-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
127 lines (108 loc) · 1.94 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
body{
height: 100%;
background-color: lightgray;
}
h1{
font-size: 3rem;
font-weight: 50;
margin: 1rem 0 3rem;
text-align: center;
color: black;
font-family: 'Open Sans', sans-serif;
}
.input_div{
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.input_div .input{
padding: 0.5rem 1rem;
height: 50px;
outline: none;
border: none;
background-color: #fff;
width: 450px;
font-size: 1.15rem;
margin: 0.25rem;
border-radius: 25px;
}
.addButton{
height: 50px;
width: 50px;
border-radius: 25px;
outline: none;
border: none;
background-color: #fff;
color: mediumblue;
margin: 0.25px;
cursor: pointer;
transition: 0.3s;
}
.addButton:hover{
background-color: mediumblue;
color: #fff;
}
.container{
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
margin-top: 2rem;
}
.item{
background-color: darkgray;
padding: 0.5px;
transition: 0.3s;
}
.item:hover{
background-color: white;
padding: 0.5px;
}
.item_input{
background: none;
outline: none;
color: black;
border: none;
width: 350px;
font-size: 1.4rem;
margin: 1rem;
}
.editButton{
height: 50px;
width: 50px;
border-radius: 25px;
outline: none;
border: none;
color: black;
margin: 5px;
cursor: pointer;
transition: 0.3s;
background: transparent;
}
.editButton:hover{
background-color: mediumseagreen;
color: #fff;
}
.removeButton{
height: 50px;
width: 50px;
border-radius: 25px;
outline: none;
border: none;
color: black;
margin: 5px;
cursor: pointer;
transition: 0.3s;
background: transparent;
}
.removeButton:hover{
background-color: lightcoral;
color: #fff;
}