-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtailwind.css
More file actions
121 lines (101 loc) · 1.97 KB
/
tailwind.css
File metadata and controls
121 lines (101 loc) · 1.97 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
:root {
--pizza-red: 234, 57, 39;
--pizza-red-dark: 45, 5, 6;
--pizza-yellow: 255, 210, 57;
--pizza-yellow-light: 239, 205, 115;
}
.font-inter {
font-family: "Inter", sans-serif;
}
.font-manrope {
font-family: "Manrope", sans-serif;
}
.overlay-effect {
box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.6);
}
.bg-dark {
background-color: #161616;
}
.bg-light-dark {
background: #222;
}
@media (min-width: 1024px) {
.lg\:bg-light-dark {
background: #222;
}
}
.scroll-smooth {
scroll-behavior: smooth;
}
/* error page style */
#notfound {
position: relative;
height: 90vh;
}
#notfound .notfound {
position: absolute;
left: 50%;
top: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.notfound {
max-width: 460px;
width: 100%;
text-align: center;
line-height: 1.4;
}
.notfound .notfound-404 {
height: 158px;
line-height: 153px;
}
.notfound .notfound-404 h1 {
color: #222;
font-size: 220px;
letter-spacing: 10px;
margin: 0px;
font-weight: 700;
text-shadow: 2px 2px 0px #c9c9c9, -2px -2px 0px #c9c9c9;
}
.notfound .notfound-404 h1 > span {
text-shadow: 2px 2px 0px #ffab00, -2px -2px 0px #ffab00, 0px 0px 8px #ff8700;
margin-bottom: 10p;
}
.notfound p {
color: #c9c9c9;
font-size: 16px;
font-weight: 400;
margin-top: 15px;
margin-bottom: 15px;
}
.notfound a {
font-size: 14px;
text-decoration: none;
text-transform: uppercase;
background: transparent;
color: #c9c9c9;
border: 2px solid #c9c9c9;
display: inline-block;
padding: 10px 25px;
font-weight: 700;
-webkit-transition: 0.2s all;
transition: 0.2s all;
border-radius: 8%;
}
.notfound a:hover {
color: #ffab00;
border-color: #ffab00;
}
@media only screen and (max-width: 480px) {
.notfound .notfound-404 {
height: 122px;
line-height: 122px;
}
.notfound .notfound-404 h1 {
font-size: 122px;
}
}
@tailwind base;
@tailwind components;
@tailwind utilities;