-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
106 lines (90 loc) · 1.7 KB
/
styles.css
File metadata and controls
106 lines (90 loc) · 1.7 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
104
105
106
/* sage {
background: #88aa99; sage
background: #b8e7b1; leaf
background: #d3abc6; rose
background: azure; azure
background: bisque; bisque
background: #f5e7dd; beige
background: #9bbabd; light teal
background: #51777c; dark teal
background: #c4d5c4; light sage
background: #eeeeee; offwhite
} */
body {
width: 99%;
min-width: 640px;
font-family: Calibri, Arial, sans-serif;
background: rgb(250, 250, 236);
}
header {
font-size: 44px;
width: 99.5%;
background: #88aa99;
color: white;
text-align: center;
margin: 0px;
}
h1 {
margin: 0px;
}
ul {
text-align: center;
list-style: none;
}
li {
text-align: left;
font-family: Calibri, Arial, sans-serif;
padding: 5px 0px 5px 10px;
font-size: 44px;
border: 4px solid #eccde3;
margin: 5px 0px 5px 0px;
border-radius: 30px;
width: 750px;
}
.input-bar {
width: 98%;
margin: 0px 0px 20px 0px;
/* border-top: 4px;
border-top-color: #1232e6;
border-bottom: 4px;
border-bottom-color: #1232e6; */
padding: 10px 0px 10px 10px;
}
.shopping-list {
width: 98%;
padding: 5px 0px 5px 20px;
display: flex;
background: white;
color: #88aa99;
}
.leaf-stripe {
background: #dbf1d7;
height: 15px;
width: 99%;
}
.rose-stripe {
background: #eccde3;
height: 30px;
width: 99%;
}
#add-item {
width: 300px;
font-family: Calibri, Arial, sans-serif;
font-size: 40pt;
background-color: #88aa99;
border-radius: 30px;
border-color: #88aa99;
color: white;
margin: 0px 0px 0px 5px;
}
#new-item-text {
font-family: Calibri, Arial, sans-serif;
font-size: 40pt;
border-radius: 30px;
border-color: #88aa99;
color: #88aa99;
}
#article-two {
border-top: 4px solid #88aa99;
border-bottom: 4px solid #88aa99;
}