-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
103 lines (91 loc) · 1.53 KB
/
style.css
File metadata and controls
103 lines (91 loc) · 1.53 KB
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100%;
background-color: rgb(224, 142, 26);
}
div {
width: 70vh;
color: white;
padding: 12px;
border-radius: 12px;
margin: auto;
text-align: center;
}
ul {
list-style-type: none;
padding: 0;
margin: 24px auto;
}
li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 1rem;
border: 1px solid black;
background-color: white;
border-radius: 25px;
margin: 5px;
color: black;
height: 40px;
}
h1 {
font-size: 3rem;
font-weight: 50;
margin: 1rem 0 3rem;
text-align: center;
color: rgb(255, 255, 255);
font-family: "Bebas Neue", cursive;
}
h2 {
margin-right: 24px;
font-family: "Bebas Neue", cursive;
}
input {
padding: 0.5rem 1rem;
height: 50px;
outline: none;
border: none;
background-color: #ffff;
width: 450px;
font-size: 1.15rem;
margin: 0.25rem;
border-radius: 25px;
}
#add-button {
font-size: 20px;
padding: 0.5rem 0.8rem;
border-radius: 25px;
background-color: black;
transition: 0.5s;
cursor: pointer;
color: white;
}
#add-button:disabled {
background-color: revert;
cursor: default;
}
.wrapper {
width: 70vw;
margin: auto;
text-align: center;
background: grey;
color: white;
}
.delete-button {
font-size: 1.4rem;
margin: 0 0.5rem;
font-family: "Bebas Neue", cursive;
background: none;
outline: none;
color: rgb(223, 16, 16);
border: none;
cursor: pointer;
}
.delete-button:hover {
border-color: white;
transform: scale(1.2);
}