-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout-styles.css
180 lines (150 loc) · 3.31 KB
/
layout-styles.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
html,body {
height: 100%;
}
* {
-moz-box-sizing: border-box;
}
body {
background-color: #9bb2ea;
color: #1E1E1e;
margin: 0;
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;
font-size: 14px;
line-height:1.428571429;
}
body, h1, p {
font-family: "Helvetica Neue", "Segoe UI", Segoe, Helvetica, Arial, "Lucida Grande", sans-serif;
font-weight: normal;
margin: 0;
padding: 0;
text-align: center;
}
a {
color: #1e1e1e;
}
a:hover,a:focus {
color:#f5824a;
text-decoration:none;
}
.text-center{text-align:center}
.wrap {
min-height: 100%;
display: table;
height: 100%;
}
.top-bar {
min-width: 100%;
height: 80px;
background: #9bb2ea;
background: -moz-linear-gradient(top, #9bb2ea 0%, #c3d0f2 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#9bb2ea), color-stop(100%,#c3d0f2));
background: -webkit-linear-gradient(top, #9bb2ea 0%,#c3d0f2 100%);
background: -o-linear-gradient(top, #9bb2ea 0%,#c3d0f2 100%);
background: -ms-linear-gradient(top, #9bb2ea 0%,#c3d0f2 100%);
background: linear-gradient(to bottom, #9bb2ea 0%,#c3d0f2 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#9bb2ea', endColorstr='#c3d0f2',GradientType=0 );
}
:root .top-bar {
filter: none \0/IE9;
}
.top-bar ul {
padding: 0px;
margin: 0px;
text-align: center;
display: inline-block;
vertical-align: top;
}
img {
max-width: 100%;
}
.menu {
max-width: 100%;
text-align: center;
display: inline-block;
text-transform: uppercase;
padding: 0px 10px 10px 10px;
vertical-align: top;
}
i {
width: 50px;
height: auto;
}
.menu img {
padding: 5px 10px 0px 10px;
display: flex;
align-items: center;
}
ul, li{
list-style: none;
padding: 10px;
margin: 0px;
}
li{
display:inline-block;
}
li a {
padding:10px;
display:block;
text-decoration: none;
text-transform: uppercase;
color:#000;
position:relative;
}
li a:after{
content:'';
width:0%;
transition:all 0.3s ease;
left:50%;
}
li a:before{
content:'';
width:0%;
transition:all 0.3s ease;
left:50%;
}
li a:hover:after{
content:'';
position:absolute;
bottom:0px;
left:50%;
background:#f5824a;
height:3px;
width:50%;
}
li a:hover:before{
content:'';
position:absolute;
bottom:0px;
left:0px;
background:#f5824a;
height:3px;
width:50%;
}
.main {
max-height: 90%;
padding: 0px 0px 55px 0px;
margin: 0px;
}
.welcome-container h1 {
margin-bottom: 1em;
}
.footer {
color: #1e1e1e;
position: relative;
height: auto;
clear: both;
text-align: center;
font-size: 14px;
}
.copyright {
margin-top: -60px; /* negative value of footer height */
background: #9bb2ea;
background: -moz-linear-gradient(top, #c3d0f2 0%, #9bb2ea 100%);
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#c3d0f2), color-stop(100%,#9bb2ea));
background: -webkit-linear-gradient(top, #c3d0f2 0%,#9bb2ea 100%);
background: -o-linear-gradient(top, #c3d0f2 0%,#9bb2ea 100%);
background: -ms-linear-gradient(top, #c3d0f2 0%,#9bb2ea 100%);
background: linear-gradient(to bottom, #c3d0f2 0%,#9bb2ea 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#c3d0f2', endColorstr='#9bb2ea',GradientType=0 );
padding: 20px 20px 20px 20px;
}