-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqpage.css
81 lines (63 loc) · 1.08 KB
/
qpage.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.flex-container {
padding: 0;
margin: 0;
list-style: none;
display: flex;
flex-flow: row wrap;
justify-content: space-around;
}
.flex-item {
background: #519872;
padding: 5px;
width: 200px;
height: 150px;
margin-top: 10px;
line-height: 150px;
color: white;
font-weight: bold;
font-size: 30px;
text-align: center;
}
body{
margin-left:100px;
margin-right:100px;
background-color:#BEC5AD;
border: solid #3B5249;
border-radius: 15px 50px 30px 5px;
padding:25px;
font-family:Arial;
}
.header {
text-align: center;
font-size: 20px;
font-family:Arial;
}
body {font-family: Arial, Helvetica, sans-serif;}
/* width */
::-webkit-scrollbar {
width: 6.5px;
}
/* Track */
::-webkit-scrollbar-track {
box-shadow: inset 0 5px #519872;
border-radius: 7px;
}
/* Handle */
::-webkit-scrollbar-thumb {
background: #3B5249;
border-radius: 10px;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: #519872;
}
html{
background-color:#A4B494;
font-family:Arial;
}
a:link {
text-decoration: none;
}
a:hover {
background-color: #A4B494;
}