-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
60 lines (50 loc) · 902 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
59
60
/* Generic styles for demo page */
* {
box-sizing: border-box;
}
html, body, div {
margin: 0;
padding: 0;
}
body {
height: 100vh;
background-color: #fafafa;
font-size: 16px;
}
body, div, span, input, select, p {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
form {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 14px;
}
.wrapper {
display: flex;
flex-direction: row;
justify-content: center;
}
body > .wrapper {
flex-direction: column;
}
.container {
width: 50%;
max-width: 420px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
margin-top: 14px;
}
body > .wrapper > .container {
width: 100%;
max-width: unset;
margin-bottom: 80px;
}
#dropdownSelected > span:first-of-type {
font-weight: bold;
font-size: 18px;
margin-bottom: 4px;
}