-
Notifications
You must be signed in to change notification settings - Fork 2
/
admin.css
124 lines (109 loc) · 2.22 KB
/
admin.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
input[type=text], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border-radius: 4px;
box-sizing: border-box;
}
input[type=email], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border-radius: 4px;
box-sizing: border-box;
}
input[type=password], select {
width: 100%;
padding: 12px 20px;
margin: 8px 0;
display: inline-block;
border-radius: 4px;
box-sizing: border-box;
}
input[type=submit] {
width: 100%;
background-color: #e95959;
color: #4E4E50;
padding: 14px 20px;
margin: 8px 0;
border: none;
border-radius: 4px;
cursor: pointer;
color:white;
font-size:20px;
}
input[type=submit]:hover {
background-color: #e95945;
}
body {
margin: 0;
padding: 0;
background-color:#212122
}
#help {
margin-right:650px;
}
.logo {
float: left;
}
/* ~~ Top Navigation Bar ~~ */
#navigation-container {
width: 100%;
height: 70px;
padding-bottom: 10px;
}
.navigation-bar {
/* background-color: #444648;*/
height: 70px;
width: 1520px;
border-bottom: 2px solid #e95959;
}
.navigation-bar img{
float:left;
height: 70px;
width:200px;
padding-bottom: 5px;
}
.navigation-bar ul {
padding: 0px;
margin: 0px;
text-align: center;
display:inline-block;
vertical-align:top;
}
.navigation-bar li {
list-style-type: none;
padding: 0px;
height: 24px;
margin-top: 4px;
margin-bottom: 4px;
display: inline;
}
.navigation-bar li a {
color: white;
font-size: 16px;
font-family: "Alegreya Sans SC", Arial, Helvetica, sans-serif;
text-decoration: none;
line-height: 70px;
padding: 5px 20px;
opacity: 0.7;
}
.footer {
padding: 10px 10px 10px 10px;
display:inline-block;
vertical-align:top;
color: white;
font-size: 16px;
font-family: "Alegreya Sans SC", Arial, Helvetica, sans-serif;
text-decoration: none;
line-height: 70px;
opacity: 0.7;
border-top: 2px solid #e95959;
}
#footer-container {
width: 1000px;
height: 70px;
padding-bottom: 10px;
}