-
Notifications
You must be signed in to change notification settings - Fork 2
/
style.css
141 lines (122 loc) · 2.46 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
/* -------------- */
/* DEFAULT STYLES */
/* -------------- */
* {
-webkit-tap-highlight-color: transparent !important;
outline: none !important;
border: none;
text-decoration: none !important;
scrollbar-width: none; /* HIDE FIREFOX SCROLLBAR */
}
/* HIDE CHROMIUM BASED BROWSERS (CHROME - BRAVE - EDGE...) SCROLLBAR */
::-webkit-scrollbar {
width: 0;
height: 0;
}
::selection {
color: #000;
background-color: #0fb;
}
::-moz-selection {
color: #000;
background-color: #0fb;
}
body {
font-family: "Mukta";
text-align: center;
background-color: #444;
margin: 0;
}
h1 {
color: #fff;
background-color: #ff002b;
margin: 0;
padding: 30px 0 100px 0;
font-size: 60px;
}
h2 {
text-transform: uppercase;
}
#row {
color: #fff;
width: 70%;
text-align: justify;
background-color: #222;
margin: -60px auto 30px;
border-radius: 40px;
padding: 10px 40px;
}
#gilgeekify {
width: 256px;
pointer-events: none;
user-select: none;
}
/* ------------------- */
/* ACCESS DENIED ERROR */
/* ------------------- */
#access-denied-error {
visibility: visible;
position: fixed;
width: 100%;
height: 100%;
font-size: 80px;
color: #fff;
background-color: #999;
pointer-events: none;
user-select: none;
}
#access-denied-error span {
display: inline-block;
background-color: #fff;
border-radius: 70px 0 70px 0;
padding: 40px;
color: #ff002b;
text-transform: uppercase;
}
#access-denied-error i {
margin-right: 30px;
font-size: 80px;
vertical-align: -5px;
}
.middle-center {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 100%;
}
/* ---------- */
/* ANIMATIONS */
/* ---------- */
.pulsate-bck {
-webkit-animation: pulsate-bck 2.5s ease-in-out infinite both;
animation: pulsate-bck 2.5s ease-in-out infinite both;
}
@-webkit-keyframes pulsate-bck {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}
@keyframes pulsate-bck {
0% {
-webkit-transform: scale(1);
transform: scale(1);
}
50% {
-webkit-transform: scale(0.9);
transform: scale(0.9);
}
100% {
-webkit-transform: scale(1);
transform: scale(1);
}
}