-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
65 lines (65 loc) · 988 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
body {
position: relative;
margin: 0;
padding: 0;
font-family: sans-serif;
font-size: 16px;
}
.container {
width: 80%;
margin: 0 auto;
}
.nav-bar {
position: fixed;
top: 0;
margin: 0 0 0 -10%;
width: 100%;
z-index: 2;
text-align: center;
line-height: 35px;
border-bottom: 1px solid #bbb;
box-shadow: 2px 0 2px 0 rgba(0, 0, 0, 0.5);
}
.nav-bar ul.nav {
display: inline-block;
list-style: none;
padding: 0;
margin: 0;
}
.nav-bar li {
display: inline-block;
}
.nav-bar a {
color: darkgray;
text-decoration: none;
}
.nav-bar a:hover {
color: lightgray;
}
.btn {
padding: 8px;
font-family: inherit;
font-size: inherit;
border-radius: 3px;
border: 1px;
cursor: pointer;
}
.btn-section {
background-color: transparent;
}
.btn-section:hover {
background-color: #eee;
}
.btn-user {
background-color: lightgray;
}
.btn-user:hover {
background-color: darkgray;
color: white;
}
.left {
float: left;
}
.right {
float: right;
}