-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
49 lines (42 loc) · 851 Bytes
/
style.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
.mid {
text-align: center;
}
.navbar a {
color: black;
}
.navbar {
height: 50px;
background: black;
}
.navbar ul {
margin: 0;
padding: 0;
height: 100%;
}
.navbar li {
color: white;
font-weight: bold;
line-height: 50px;
list-style: none;
display: inline-block;
padding-left: 10px;
padding-right: 20px;
box-sizing: border-box;
border-right: solid black 1px;
background: #666666;
}
#button {
font-size: 1.2em;
padding: 12px 24px;
color: white;
border: 1px solid;
border-radius: 4px;
background-color: #5cb85c;
border-color: #4cae4c;
cursor: pointer;
text-decoration: none;
}
#logo {
vertical-align: middle;
height: 30px;
}