-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (73 loc) · 1.37 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
@import url('https://fonts.googleapis.com/css2?family=Inter:[email protected]&display=swap');
:root{
--clr-black:#000000;
--clr-netural:#404040;
--clr-white:#ffffff;
--clr-zinc-100:#f4f4f5;
--clr-zinc-200:#e4e4e7;
--clr-zinc-300:#d4d4d8;
--clr-zinc-500:#71717a;
--clr-zinc-800:#27272a;
--clr-error:#ef4444;
}
.text-zinc-500 {
color: var(--clr-zinc-500);
}
.text-black {
color: var(--clr-black);
}
.text-shadow {
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.stoke{
-webkit-text-stroke: 1px black;
}
@media (max-width: 349px) {
.w-xs-280px {
width: 280px !important;
}
}
@media (min-width: 786px) {
.w-md-50{
width: 400px !important;
}
}
@media (min-width: 1000px) {
.w-lg-50{
width: 500px !important;
}
}
@media (min-width: 768px) {
.display-none-md{
display: none;
}
}
.list-style{
text-decoration: none;
list-style: none;
}
.width-350px {
width: 350px;
}
.width-310px {
width: 310px;
}
@media(max-width:576px)
{
.w-xs-85{
width: 85%;
}
}
.border-page3{
border: 1px solid var(--clr-zinc-500);
border-radius: 5px;
}
.mt-5r{
margin-top: 8rem;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Inter", sans-serif;
}