blob: 6091f6d591dfb92b86c4fcb65155b868bf72005b (
plain) (
blame)
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
|
.Main {
max-width: 95%;
margin: 10px auto;
}
.Hero {
display: flex;
align-items: center;
justify-content: space-between;
}
.ImageContainer {
display: flex;
flex-direction: column;
max-width: auto;
}
.ImageContainer img {
margin: 0px 4px 4px 4px;
border-radius: 8px;
}
.WelcomeContainer button {
font-family: "Inter";
font-size: 16px;
margin-top: 8px;
padding: 6px;
border-radius: 5px;
border: none;
outline: none;
background-color: var(--neon-green);
cursor: pointer;
}
.WelcomeText {
font-family: "Poppins";
color: white;
font-size: 48px;
text-shadow: rgb(0, 183, 255) 2px 2px 50px;
margin-right: 10px;
}
.SelfPromoContainer {
display: flex;
justify-content: center;
flex-direction: column;
color: white;
}
.SelfPromoContainer p {
font-family: "Atkinson Hyperlegible";
color: white;
text-align: center;
}
.SearchBar {
display: flex;
align-items: center;
border-radius: 4px;
background: #1f1f1f;
margin-top: 5px;
width: 55%;
}
.SearchBar input {
background: none;
outline: none;
border: none;
margin-left: 5px;
padding: 4px;
width: 100%;
color: white;
font-family: "Kanit";
font-size: 16px;
}
.LoadingContainer {
display: flex;
justify-content: center;
align-items: center;
height: 90dvh;
color: white;
font-family: "Kanit";
font-size: 18px;
}
@media screen and (max-width: 768px) {
.Hero {
flex-direction: column;
}
.WelcomeContainer {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
margin-bottom: 10px;
}
.WelcomeText {
font-size: 30px;
}
.HorizontalImageContainer img {
width: 100%;
border-radius: 5px;
height: auto;
margin: 10px auto;
}
.VerticalImageContainer img {
display: none;
}
.SearchBar {
width: 80%;
margin: 0px auto;
}
}
|