-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
67 lines (59 loc) · 1.01 KB
/
index.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
body {
font-family: monospace;
background-color: #BFBBBA;
display: flex;
justify-content: center;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}
#name {
display: block;
width: 650px;
}
#nameBox {
display: flex;
justify-content: center;
margin-top: 20px;
margin-bottom: 20px;
align-items: flex-start;
}
#optionsBox {
display: flex;
float: none;
justify-content: center;
margin-bottom: 15px;
}
a {
cursor: pointer;
padding-left: 3vw;
padding-right: 3vw;
padding-top: 5px;
padding-bottom: 5px;
margin-left: 1vw;
margin-right: 1vw;
font-size: 18px;
text-decoration: none;
color: black;
}
a:hover,#selected {
background-color: #DF331F;
color: white;
}
.topBox {
background-color: #BFBBBA;
display: flex;
flex-direction: column;
border-bottom: #DF331F solid 2px;
width: 100vw;
position: fixed;
top: 0;
}
@media only screen and (max-width: 715px) {
#name {
width: 90vw;
}
a {
font-size: 14px;
}
}