-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (61 loc) · 865 Bytes
/
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
body {
background-color: #dddddd;
height: 100vh;
color: aliceblue;
}
.nav-wrapper {
background-color: #222831;
}
.brand-logo {
color: #027959;
}
.card {
background-color: #30475e;
margin-top: 50px;
border-radius: 20px;
}
#item-list li {
background-color: #30475e;
}
#total-calories {
margin-top: 50px;
color: black;
}
ul {
color: aliceblue;
}
ul i {
color: aliceblue;
}
ul li {
margin-top: 20px;
border-radius: 10px;
}
.clear-btn-div {
display: flex;
align-items: center;
justify-content: center;
}
.clear-btn {
background-color: #d72323;
}
.delete-btn {
background-color: #df2055;
}
.update-btn {
background-color: #00adb5;
}
.add-btn {
background-color: #f05454;
}
.back-btn {
background-color: #ffffff;
color: #232121;
}
label {
font-weight: 800;
color: black;
}
.btn {
border-radius: 5px;
}