-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (80 loc) · 1.59 KB
/
style.css
File metadata and controls
94 lines (80 loc) · 1.59 KB
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
@import url('./menu.css');
@import url('./content.css');
@import url('./layout.css');
@import url('./colors.css');
@import url('./mockup.css');
@import url('./tags.css');
html {
overflow-y: scroll;
}
body {
font-size: 14px;
font-family: "Open Sans", Helvetica, Arial, sans-serif;
background: #eee;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
text-rendering: optimizeLegibility;
font-kerning: normal;
}
body > #header {
background-color: white;
}
body > #content {
padding-top: 40px;
padding-bottom: 40px;
min-height: calc(100vh - 112px - 249px);
}
body.homepage > #content {
min-height: calc(100vh - 292px - 249px);
}
body.full > #content {
margin: 0;
padding: 0;
position: absolute;
top: 100px;
bottom: 0;
left: 0;
right: 0;
}
body > #content > iframe {
border: none;
width: 100%;
height: 100%;
}
body > #footer {
z-index: 10;
}
body > #footer > .footer-v3 > .footer {
padding: 0;
}
.header .logo {
height: 72px;
z-index: 99999;
}
li a {
color: #3498db;
}
p,
li,
label {
color: #333;
}
.scrollup {
width: 40px;
height: 40px;
opacity: 0.2;
position: fixed;
right: 20px;
bottom: 20px;
display: none;
margin-left: 970px;
text-indent: -99999px;
cursor: pointer;
background: url(../img/ico-scroll-top.png) no-repeat;
}
@media (max-width: 767px) {
body > #content {
padding-top: 20px;
padding-bottom: 20px;
}
}