-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
58 lines (51 loc) · 1015 Bytes
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@300;400;600;700&display=swap");
* {
font-family: Roboto Slab;
}
body{
width: 100vw;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.container{
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
background-color: rgb(244, 244, 244);
height: 35rem;
width:35rem;
border-radius: 2rem;
}
.top-text {
text-align: center;
}
#selection1 {
margin: 1rem;
display: flex;
flex-direction: column;
gap: 1rem;
align-items: center;
justify-content: center;
text-align: center;
}
#selection2 {
text-align: center;
margin: 1rem;
}
input {
height: 2rem;
border-radius: 12px;
border:2px solid;
background-color: rgb(255, 255, 255);
box-shadow: 8px 2px 16px rgb(210, 208, 208);
}
select {
background-color: rgb(93, 216, 177);
font-size: 1rem;
height: 2.4rem;
border-radius: 12px;
padding: 8px;
}