-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.css
83 lines (73 loc) · 1.26 KB
/
app.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
body {
background-color: #333;
min-height: 100vh;
display: grid;
place-items: center;
padding: 2rem;
}
.container {
background-color: white;
border-radius: .5rem;
padding: 2rem;
width: 100%;
max-width: 600px;
}
.header {
}
.header .group {
display: flex;
justify-content: center;
align-items: center;
gap: 1rem;
}
select {
padding: .25rem;
}
button, select {
height: 2rem;
}
button {
width: 5rem;
border: none;
background-color: rgb(68, 174, 255);
border-radius: .5rem;
color: white;
transition: .2s ease;
cursor: pointer;
}
button:hover {
background-color: rgb(49, 147, 222);
}
.container ul {
list-style: none;
display: none;
max-height: 50vh;
overflow: auto;
margin-top: 2rem;
padding: 1rem;
padding-top: 0;
}
.container ul.show {
display: block;
}
.container ul li {
width: 100%;
min-height: 100px;
background-color: #eee;
overflow: none;
border-radius: .5rem;
margin-top: 1rem;
overflow: hidden;
padding: .5rem;
}
.container ul li img {
width: 100%;
border-radius: .3rem;
border: 5px solid rgb(255, 255, 255);
}