-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (43 loc) · 700 Bytes
/
style.css
File metadata and controls
47 lines (43 loc) · 700 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
40
41
42
43
44
45
46
47
* {
font-size: x-large;
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color: #30343f;
background-image: url(./assets/undraw_personal_finance_tqcd.svg);
background-size: cover;
height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.container {
background-color: #30343f;
border: solid 1px;
border-radius: 5px;
padding: 15px;
display: flex;
flex-direction: column;
align-items: center;
}
.title {
margin-bottom: 10px;
font-size: 38px;
color: #ffffff;
}
p {
margin-bottom: 10px;
color: #ffffff;
}
select {
margin: 10px;
}
option {
color: black;
}
button {
margin-top: 10px;
}