-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
80 lines (73 loc) · 1.24 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
body {
background-color: rgba(0, 0, 0, 0.881);
}
.container {
column-count: 5;
column-width: 270px;
column-gap: 5px;
}
img {
width: 100%;
}
.container-item {
margin: 0;
max-width: 400px;
width: 100%;
}
.main {
display: flex;
align-items: center;
gap: 20px;
}
.search {
height: 35px;
width: 600px;
background-color: white;
margin-left: 550px;
margin-right: 100px;
padding-left: 10px;
border-radius: 20px;
display: flex;
align-items: center;
gap: 20px;
}
.search input[type="search"]{
width: 100%;
border: none;
outline: none;
background: transparent;
font-size: 16px;
}
h1 {
color: aliceblue;
font-size: 4vw;
margin-left: 20px;
font-family: "Kablammo", system-ui;
}
span {
font-size: 20px;
font-family: 'Segoe UI';
margin-left: 10px;
}
@media(max-width: 768px){
.container {
column-count: 2;
}
h1 {
font-size: 6vw;
}
span {
font-size: 20px;
}
}
@media(max-width: 480px){
.container {
column-count: 1;
}
h1 {
font-size: 8vw;
}
span {
font-size: 4vw;
}
}