-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
52 lines (51 loc) · 857 Bytes
/
index.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
.container{
max-width: 436px;
border: 1px solid #989898;
display: flex;
flex-direction: row;
justify-content: flex-start;
margin-bottom: 8px;
padding: 12px;
border-radius: 6px;
}
.addInput{
width: 100%;
border: 0;
}
.deleteButton{
color: #989898;
height: 25px;
border: 0;
padding-left: 18px;
background-color: rgba(255, 255, 255, .4);
}
input{
align-self: start;
font-size: 18px;
font-weight: 400;
}
label{
font-size: 18px;
font-weight: 400;
}
span{
width: 100%;
}
.addButton{
margin-top: -5px;
color: #989898;
height: 25px;
border: 0;
padding-left: 18px;
background-color: rgba(255, 255, 255, .4);
transform: rotate(45deg);
}
h3{
width: 100%;
text-align: center;
font-size: 18px;
font-weight: 400;
}
.page{
width: 476px;
}