-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdropdown.css
More file actions
39 lines (37 loc) · 740 Bytes
/
dropdown.css
File metadata and controls
39 lines (37 loc) · 740 Bytes
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
* {
font-family: "Roboto", sans-serif;
}
#resolution {
width: 200px;
padding: 4px 4px;
margin: 0px;
border-radius: 4px;
}
#image-container {
width: 300px;
height: 150px;
border: 1.5px solid #9b9b9b;
margin: 0px;
border-radius: 4px;
}
#image {
width: 100%;
height: 100%;
object-fit: cover;
}
.dropdown-design{
display: inline-flex;
padding: 30px;
flex-direction: column;
align-items: center;
gap: 16px;
border-radius: 4px;
background: linear-gradient(122deg, #FFE9F1 6.41%, #FFEFDB 93.22%);
box-shadow: 0px 1px 10.3px 0px rgba(0, 0, 0, 0.25);
}
.dropdown-holder{
display: flex;
justify-content: center;
align-items: center;
margin-top: 32px;
}