-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (76 loc) · 1.49 KB
/
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
@import url('https://fonts.googleapis.com/css2?family=Nova+Oval&display=swap');
*{
background-color: black;
color: white;
font-size: 22px;
font-family: 'Nova Oval', cursive;
}
.main h1 {
text-align: center;
color: #70fdf1;
font-size: 38px;
}
.main h3 {
text-align: center;
}
.expense-form {
display: flex;
flex-flow: row;
justify-content: space-evenly;
margin: 60px;
}
.field{
position: relative;
}
label {
background: #323645;
font-weight: normal;
color: #8E909D;
font-size: 0.875rem;
line-height: 1.3125rem;
position: absolute;
left: 20px;
top: 12px;
}
input[type=text] {
background: #323645;
border-radius: 16px;
padding: 35px 20px 15px;
border: 2px solid transparent;
height: 85px;
width: 250px;
box-sizing: border-box;
font-family: 'Poppins', sans-serif;
color: white;
font-size: 1rem;
outline: none;
}
input[type=text]:focus {
border: 2px solid #70fdf1;
}
input[type=text]:focus + label {
color: #70fdf1;
}
button {
outline: none;
border-radius: 30px;
background-color: #70fdf1;
color: #323645;
padding: 10px;
height: 60px;
width: 220px;
font-size: 18px;
font-weight: bolder;
cursor: pointer;
}
.expense-list {
display: flex;
flex-flow: column;
justify-content: space-between;
align-items: center;
}
.split-section {
display: flex;
flex-flow: row;
justify-content: space-evenly;
}