-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (94 loc) · 1.61 KB
/
style.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
height: 100%;
background-color: #111;
box-sizing: border-box;
}
h1 {
color: #fff;
font-size: 3rem;
font-weight: 50;
text-align: center;
margin: 1rem 0 3rem;
font-family: 'Hind', sans-serif;
}
.title{
color: #f1c40f;
text-transform: uppercase;
font-weight: 800;
}
.inputDiv{
display: flex;
justify-content: center;
align-items: center;
}
.input{
padding: 0.5rem 1rem;
outline: none;
border: none;
height: 50px;
border-radius: 25px;
width: 350px;
margin: 0.25rem;
transition: .5s;
font-size: 1.15rem;
}
.add{
outline: none;
border: none;
height: 50px;
border-radius: 25px;
width: 50px;
background-color: #f1c40f;
color: #ecf0f1;
cursor: pointer;
transition: .5s;
margin: 0.25rem;
}
.add:hover{
opacity: 0.7;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 2rem;
}
.item{
padding: 0.5rem;
border-bottom: 4px solid #fff;
margin-bottom: 1.5rem;
}
.item_input{
background: none;
outline: none;
border: none;
color: #fff;
font-size: 1.4rem;
width: 245px;
}
.edit{
background: none;
outline: none;
border: none;
color: #f1c40f;
font-size: 1.4rem;
font-family: 'Hind', sans-serif;
margin: 0 0.5rem;
cursor: pointer;
}
.remove{
background: none;
outline: none;
border: none;
color: #E00;
font-size: 1.4rem;
font-family: 'Hind', sans-serif;
cursor: pointer;
}