-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdj.css
More file actions
184 lines (160 loc) · 4.28 KB
/
dj.css
File metadata and controls
184 lines (160 loc) · 4.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
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
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('./bg-2.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: 'Aldrich', sans-serif;
font-size: 45px;
}
h3 {
font-family: 'Aldrich', sans-serif;
font-size: 38px;
text-transform: uppercase;
}
.btn-1 {
font-family: 'Aldrich', sans-serif;
background-color: transparent;
border: 3px solid #56a4ec;
border-radius: 50px;
-webkit-transition: all .15s ease-in-out;
transition: all .15s ease-in-out;
color: #ffffff;
}
.btn-1:hover {
box-shadow: 0 0 10px 0 #56a4ec inset, 0 0 20px 2px #56a4ec;
border: 3px solid #56a4ec;
color: #56a4ec;
}
.btn-mod.btn-large {
height: auto;
padding: 13px 52px;
font-size: 15px;
}
.btn-mod.btn-border {
color: #ffffff;
border: 2px solid #ffffff;
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;
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: #fff;
border-color: transparent;
background: #000;
}
.btn-mod:hover, .btn-mod:focus, a.btn-mod:hover, a.btn-mod:focus {
font-weight: 400;
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;
}
.btn-glow:hover {
box-shadow: rgba(var(--primary-color), 0.5) 0px 0px 20px 0px;
color: #ffffff;
}
/* https://sushi.com/ */
.btn-gradient {
background-image: linear-gradient(to right, rgb(1 134 218), rgb(182 49 167));
border: 0;
color: rgba(var(--text-color));
}
/* https://sushi.com/ */
.btn-gradient-border {
color: rgba(var(--text-color));
border: 2px double transparent;
background-image: linear-gradient(rgb(13, 14, 33), rgb(13, 14, 33)), radial-gradient(circle at left top, rgb(1, 110, 218), rgb(217, 0, 192));
background-origin: border-box;
background-clip: padding-box, border-box;
}