-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
89 lines (83 loc) · 1.73 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
88
89
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');
*{
margin: 0;
padding: 0;
}
body {
font-family: 'Dancing Script', cursive;
background-color: bisque;
align-items: center;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
width: 100%;
color: white;
letter-spacing: 2px;
font-size: 3em;
text-align: center;
margin: 2vh auto;
background-color: rgb(247, 201, 146);
}
.inputDiv, .item{
width: 40%;
border: 5px double rgb(247, 201, 146);
padding: 10px;
border-radius: 5px;
display: flex;
justify-content: center;
border-radius: 15px;
margin-top: 20px;
}
.container {
border: 5px double rgb(247, 201, 146);
margin-top: 20px;
border-radius: 25px;
display: flex;
justify-content: space-around;
flex-direction: column;
}
.item {
margin-top: 20px;
width: 90%;
border: none;
}
.input, .itemInput {
font-family: 'Dancing Script', cursive;
margin: 5px 10px;
padding: 0px 20px;
border-radius: 10px;
background-color: beige;
width: 450px;
height: 50px;
font-size: 1.5em;
border: none;
}
.addBtn, .editBtn, .removeBtn {
background-color: beige;
padding: 0px 20px;
border-radius: 5px;
height: 50px;
width: 50px;
margin:auto;
color: rgb(255, 6, 46);
border: none;
font-size: 1.5em;
margin-right: 15px;
}
.addBtn:hover , .editBtn:hover, .removeBtn:hover {
background-color: rgb(246, 83, 83);
color: bisque;
font-weight: bold;
}
/* Footer */
footer {
width: 100%;
height: 30px;
position: absolute;
bottom: 0;
background-color: rgb(247, 201, 146);
text-align: center;
font-size: 1.2em;
}