-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
90 lines (74 loc) · 1.01 KB
/
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
text-align: center;
}
#logo {
margin: auto;
padding-top: 100px;
}
input {
margin-top: 20px;
width: 400px;
}
.button {
display: inline-block;
background-color: #f2f2f2;
padding: 12px 16px;
border: 1px solid #f2f2f2;
font-family: ariel, sans-serif;
font-size: 13px;
margin: 5px;
text-align: center;
border-radius: 4px;
}
#navBar {
text-align: right;
margin-right: 30px;
}
ul {
list-style: none;
margin: 0;
padding: 0;
overflow: hidden;
}
li {
float: right;
margin: 10px 5px;
}
a {
text-decoration: none;
color: #666666
}
a:hover {
text-decoration: underline;
}
#profilePic {
margin-top: -7px;
}
#notification {
margin-top: -2px;
}
#navBar ul li {
display: block;
}
#bottomBar ul li {
display: inline;
margin: 10px 15px;
}
#bottomBar ul {
display: block;
}
#bottomRight {
float: right;
margin-right: 30px;
}
#bottomLeft {
float: left;
margin-left: 30px;
}
#bottomBar {
position: absolute;
bottom: 0px;
width: 100%;
background-color: #f2f2f2;
border-top: 1px solid #e3e3e3;
}