-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcrime.css
More file actions
159 lines (138 loc) · 3.28 KB
/
crime.css
File metadata and controls
159 lines (138 loc) · 3.28 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
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
HTML, BODY {
height: 100%;
width: 100%;
height: 100vh;
width: 100vw;
margin:0;
padding:0;
/* required to prevent rogue scrollbars */
overflow: hidden;
/* cosmetic stuff: */
background-color: #000;
}
.wrapper {
background: url('./crime01.jpg');
background-size: cover !important;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
padding:0;
margin:0;
background-position: center center !important;
background-repeat: no-repeat !important;
/* background-attachment: fixed !important;*/
/* if you want the content to scroll normally: */
overflow: auto;
background-color: #000;
}
.wrapper:after{
position:fixed;
content:"";
top:0;
left:0;
right:0;
bottom:0;
background:rgba(0,0,0,0.3);
z-index:-1;
}
h2 {
font-family: 'Archivo Black', sans-serif;
font-size: 48px;
font-weight: 500;
}
h3 {
font-family: 'Archivo Black', sans-serif;
font-size: 40px;
font-weight: 500;
}
h4 {
font-family: 'Archivo Black', sans-serif;
font-size: 32px;
font-weight: 500;
}
.btn-mod.btn-large {
height: auto;
padding: 13px 52px;
font-size: 15px;
font-family: 'Lato', sans-serif;
font-weight: 400;
}
.btn-mod.btn-border {
color: #ffffff;
border: 2px solid rgba(240,255,0, .85);
background: transparent;
}
.btn-mod, a.btn-mod {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 4px 13px;
color: #fff;
background: rgba(34,34,34, .9);
border: 2px solid transparent;
font-size: 11px;
font-weight: 400;
font-family: 'Lato', sans-serif;
text-transform: uppercase;
text-decoration: none;
letter-spacing: 2px;
-webkit-border-radius: 0;
-moz-border-radius: 0;
border-radius: 0;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
-webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
-moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
-o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
-ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
.btn-mod.btn-border:hover, .btn-mod.btn-border:focus{
color: #ffffff;
border-color: transparent;
background: #000;
}
.btn-mod:hover, .btn-mod:focus, a.btn-mod:hover, a.btn-mod:focus {
font-weight: 500;
font-family: 'Lato', sans-serif;
color: rgba(255,255,255, .85);
background: rgba(0,0,0, .7);
text-decoration: none;
outline: none;
border-color: transparent;
-webkit-box-shadow: none;
box-shadow: none;
}
/* Reveal icon on hover */
a.btn.btn-mod.btn-border.animation-one span {
cursor: pointer;
display: inline-block;
position: relative;
transition: 0.3s;
}
a.btn.btn-mod.btn-border.animation-one span:after {
font-family: FontAwesome;
content: "\f105";
position: absolute;
opacity: 0;
top: 0;
right: -20px;
transition: 0.3s;
}
a.btn.btn-mod.btn-border.animation-one:hover span {
padding-right: 25px;
}
a.btn.btn-mod.btn-border.animation-one:hover span:after {
opacity: 1;
right: 0;
}
.btn:hover {
transition: all 0.3s ease;
}