forked from timiwahalahti/effi-tor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
208 lines (199 loc) · 3.53 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
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
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
body {
font-family: 'Raleway', sans-serif;
background-color: #FAFAFA;
position: relative;
}
h1 {
font-weight: 700;
}
h3 {
color: #700A4D;
}
p a,
p a:visited {
color: #700A4D;
text-decoration: underline;
}
p a:hover {
text-decoration: none;
}
.centered {
text-align: center;
}
/*Header*/
#headerwrap {
background: #181C1D url('header-bg.jpg') no-repeat;
background-position: bottom right;
background-size: auto 400px;
color: #fff;
text-align: center;
padding-top: 70px;
min-height: 400px;
}
#headerwrap h1 {
font-size: 4em;
}
#headerwrap img {
margin-top: 20px;
}
#headerwrap img.img-responsive {
display: inline;
}
#headerwrap .btn-primary {
background-color: #700A4D;
border: none;
border-bottom: 4px solid #55083B;
outline: 0;
}
#headerwrap .btn-primary:hover {
background-color: #55083B;
border-bottom: 4px solid #55083B;
}
/*Navigation*/
#nav.navbar-default {
background-color: #700A4D;
border: none;
border-radius: 0px;
z-index: 900;
}
#nav.navbar-default a {
color: #fff;
}
.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:hover,
.navbar-default .navbar-nav>.active>a:focus {
background-color: #55083B;
}
#nav.navbar-default a.navbar-brand {
font-weight: 700;
}
/*Points*/
#pointswrap {
padding-top: 40px;
margin-bottom: 40px;
}
/*How Tor works*/
#howwrap {
overflow: hidden;
padding-top: 40px;
padding-bottom: 40px;
}
#howwrap .background {
background-color: #ECECEC;
transform:rotate(1.15deg);
-ms-transform:rotate(1.15deg);
-webkit-transform:rotate(1.15deg);
-moz-transform:rotate(1.15deg);
margin-left: -10px;
padding-top: 10px;
padding-bottom: 25px;
width: 101%
}
#howwrap .container {
transform:rotate(-1.15deg);
-ms-transform:rotate(-1.15deg);
-webkit-transform:rotate(-1.15deg);
-moz-transform:rotate(-1.15deg);
}
#howwrap img {
margin-top: 30px;
}
/*Effi Tor-server*/
#effiwrap {
padding-top: 40px;
margin-bottom: 50px;
}
#effiwrap .head {
border-bottom: 1px solid #D6D6D6;
margin-bottom: 10px;
}
#effiwrap .head h4 {
color: #6F6F6F;
}
#effiwrap .btn-primary {
background-color: #181C1D;
border: none;
border-bottom: 4px solid #000;
outline: 0;
}
#effiwrap .btn-primary:hover {
background-color: #181C1D;
border-bottom: 4px solid #181C1D;
}
/*Parallax */
#polygons {
background: url(polygons.jpg) no-repeat center center fixed;
display: table;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
opacity: 0.7;
height: 250px;
}
#polygons2 {
background: url(polygons.jpg) no-repeat center center fixed;
display: table;
position: relative;
width: 100%;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
opacity: 0.7;
height: 100px;
}
/*Use tor*/
#usewrap {
padding-top: 50px;
margin-bottom: 50px;
}
#usewrap h3 {
margin-top: 0;
}
#usewrap .nav-tabs>li>a {
border-radius: 0;
}
#usewrap .nav>li>a {
color: #700A4D;
}
#usewrap .nav-tabs>li.active>a,
#usewrap .nav-tabs>li.active>a:hover,
#usewrap .nav-tabs>li.active>a:focus {
color: #700A4D;
}
/*Footer*/
#footerwrap {
background: #181C1D;
}
#footerwrap h4 {
color: #fff;
text-transform: uppercase;
font-weight: 700;
}
#footerwrap .team {
color: #fff;
padding-top: 20px;
padding-bottom: 10px;
}
#footerwrap .team a,
#footerwrap .team a:visited {
color: #fff;
text-decoration: underline;
}
#footerwrap .team a:hover {
text-decoration: none;
}
/*Bootstrap modifications*/
.center-block {
float: none;
}
.affix {
top: 0;
width: 100%;
}
@media (min-width: 1200px) {
#nav .container{
max-width: 878px;
}
}