-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.css
158 lines (150 loc) · 2.83 KB
/
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
body,
h1,
h2,
h3,
h4,
h5,
p {
font-family: proxima_nova_rgregular, Helvetica, Arial, sans-serif;
}
body {
margin: 0 !important;
padding: 0 !important;
overflow: hidden;
}
h1 {
color: #b0c641;
line-height: 48px;
font-size: 2.5em;
}
h2 {
font-size: 1.7em;
}
h3 {
font-size: 1.4em;
font-weight: bold;
}
h5 {
font-size: 1em;
font-color: light-grey;
font-weight: italic;
}
p {
font-size: 1.5em;
padding-right: 50px;
}
#header {
width: 100%;
height: 80px;
position: relative;
overflow: hidden;
}
#header img {
max-height: 2.5em;
padding: 20px;
padding-left: 40px;
}
#container {
width: 100%;
height: 81%;
position: relative;
overflow: hidden;
}
#slides {
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
background-color: black;
float: left;
z-index: 5;
}
#slides img {
background-repeat: no-repeat;
background-position: center;
width: 100%;
height: 100%;
}
#slides .info {
z-index: 30;
color: white;
position: absolute;
background-color: black;
opacity: 0.9;
padding: 50px;
height: 100%;
width: 30%;
}
#tv {
height: 33%;
position: relative;
float: right;
z-index: 10;
margin: 20px;
}
#messages {
clear: both;
width: 100%;
height: 12%;
font-size: 1.5em;
padding: 1.3% 25px;
}
#messages .heading {
font-weight: bold;
background-color: #b0c641;
color: white;
padding: 5px 10px;
margin-right: 25px;
display: inline;
font-size: 1.7em;
}
#messages .warning {
background-color:#F68D2E ;
}
#messages .info {
background-color:#b0c641 ;
}
#messages .success {
background-color: #4AC7ED ;
}
#messages .error {
background-color: red;
}
#messages .text {
display: inline;
font-size: 1.3em;
}
.cf:after {
display: block;
}
div.color span {
display: block;
width: 12.5%;
float: left;
height: 8px;
background-color: #292A79
}
div.color span:nth-child(1) {
background: #F68D2E;
background: -webkit-gradient(linear, left top, right top, color-stop(0, #4AC7ED), color-stop(70%, #4AC7ED), color-stop(30%, #F68D2E), color-stop(100%, #F68D2E));
background: -webkit-linear-gradient(right, #F68D2E 0, #F68D2E 70%, #4AC7ED 30%, #4AC7ED 100%);
background: linear-gradient(to left, #F68D2E 0, #F68D2E 70%, #4AC7ED 30%, #4AC7ED 100%);
filter: progid: DXImageTransform.Microsoft.gradient( startColorstr='$cReOrange', endColorstr='$cReBlue', GradientType=1)
}
div.color span:nth-child(2),
div.color span:nth-child(3) {
background-color: #BEC2C7
}
div.color span:nth-child(4),
div.color span:nth-child(5),
div.color span:nth-child(6),
div.color span:nth-child(7),
div.color span:nth-child(8) {
background-color: #AFC836
}
.color {
float: left;
width: 100%;
height: 10px;
}