-
Notifications
You must be signed in to change notification settings - Fork 16
/
styles.css
79 lines (68 loc) · 1.09 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
* {
font-size: 20px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
h1 {
color: blue;
font-size: 2rem;
}
button {
background-color: lightgreen;
cursor: pointer;
margin: 0.5rem;
max-width: 100px;
}
input {
background-color: lightgreen;
border: none;
border-radius: 4px;
color: black;
cursor: pointer;
margin: 8px 0;
padding: 14px 20px;
width: 80%;
}
header {
align-items: center;
display: flex;
}
i {
color: green;
font-size: 2rem !important;
margin-left: 2rem;
}
.container {
background-color: #ddd;
margin: 2rem auto;
padding: 2rem;
max-width: 1000px;
}
.form__container {
align-items: center;
border: 2px solid blue;
border-radius: 1rem;
display: flex;
flex-direction: column;
margin: auto;
max-width: 800px;
padding: 2rem;
}
.itemList {
display: grid;
grid-template-columns: repeat(4, 1fr);
height: 10rem;
}
.popularItemsSection {
display: flex;
justify-content: space-between;
max-width: 200px;
}
.itemRemoved {
text-decoration: line-through;
}
.warning__container {
height: 1rem;
}
.warning {
color: red;
}