-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
74 lines (65 loc) · 1.08 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
*{
padding: 0px;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
}
.container{
display: flex;
flex-direction: column;
gap: 40px;
width: 80vw;
margin: 10px auto;
}
.line{
width: 100%;
height: 2px;
background-color: rgb(99, 99, 99);
border-radius: 20px;
}
.search-input{
display: flex;
flex-direction: column;
width: 60%;
gap: 10px;
font-size: 20px;
margin: auto;
}
.search-input > input{
font-size: 20px;
padding: 5px;
border-radius: 5px;
}
.card-container{
display: grid;
grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
gap: 10px;
}
.card{
display: flex;
flex-direction: column;
gap: 10px;
padding: 10px;
border-radius: 10px;
background-color: rgb(240, 240, 240);
border: 1px solid #777;
}
.user-name{
font-size: 20px;
}
.user-email{
font-size: 16px;
color: #777;
}
.hide{
display: none;
}
@media (max-width: 450px){
.search-input{
width: 90%;
}
}
@media (max-width: 700px){
.search-input{
width: 75%;
}
}