-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
146 lines (121 loc) · 2.15 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
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
body, html {
background-color: #cacaca;
font-family: 'Quicksand', sans-serif;
color: #ffffff;
background-image: url(images/head_bg.jpg);
background-attachment: fixed;
background-size: cover;
backgorund-repeat:no-repeat;
background-position:center;
min-width: 1280px;
}
body {
position: relative;
}
.container {
width: 1280px;
}
#top {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 226px;
background: url(images/top.png) center top;
-webkit-transform: translatez(0);
-moz-transform: translatez(0);
-ms-transform: translatez(0);
-o-transform: translatez(0);
transform: translatez(0);
}
header {
height: 548px;
text-align: center;
padding-top: 260px;
}
header h1 {
font-size: 32px;
margin: 0;
}
header p {
margin: 28px auto 0;
max-width: 660px;
font-size: 13px;
}
#main {
height: 416px;
background-image: url(images/content_bg.jpg);
background-size: 100%;
font-size: 14px;
color: #cccccc;
}
#main .container{
padding: 30px 163px 0;
}
#main h2{
width: 226px;
margin: 0 auto;
margin-bottom: 35px;
padding-bottom: 20px;
font-size: 24px;
font-weight: bold;
border-bottom: 1px solid #fff;
text-align: center;
color: #fff;
}
#main h3 {
margin-top: 0;
font-size: 16px;
font-weight: bold;
color: #fff;
}
#main p,
#main ul {
font-family: 'Roboto Slab', serif;
}
#main ul {
font-size: 12px;
}
#main .row {
margin-left: -36px;
}
#main .cell {
padding-right: 44px;
padding-left: 72px;
background: no-repeat;
background-position: 0 4px;
width: 50%;
float: left;
}
#main .cell-balance {
background-image: url(images/icon_balance.png);
}
#main .cell-bulb {
background-image: url(images/icon_bulb.png);
}
#main .cell-stat {
background-image: url(images/icon_stat.png);
}
#main .cell-tv {
background-image: url(images/icon_tv.png);
}
#main .cell-bulb,
#main .cell-tv {
padding-left: 92px;
background-position: 20px 4px;
}
#main ul {
margin: 0 0 25px 10px;
padding: 0;
}
footer {
height: 228px;
padding-top: 45px;
background-color: #cacaca;
}
footer .container {
padding-left: 124px;
}
footer .row1 {
margin-bottom: 11px;
}