-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
117 lines (101 loc) · 1.64 KB
/
Copy pathindex.css
File metadata and controls
117 lines (101 loc) · 1.64 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
107
108
109
110
111
112
113
114
115
116
117
html,
body {
height: 100%;
margin: 0;
padding: 0;
font-family: "Rubik", sans-serif;
background-color: #eef0f4;
user-select: none;
}
.container {
display: flex;
flex-direction: column;
max-width: 320px;
min-width: 300px;
min-height: 400px;
margin: 0 auto;
padding: 10px;
position: relative;
overflow-y: auto;
}
.footer {
text-align: center;
margin-top: auto;
padding: 10px 0;
font-size: smaller;
}
.footer a {
color: #5d7e4e;
text-decoration: none;
}
.footer a:hover {
text-decoration: underline;
}
.logo-el {
text-align: center;
}
img {
width: 150px;
margin: 0 auto;
}
.input-el {
text-align: center;
}
input {
color: #432000;
background-color: #dce1eb;
padding: 15px;
width: 80%;
border-radius: 10px;
border: 0;
font-family: "Rubik", sans-serif;
text-align: center;
font-size: larger;
outline: none;
transition: box-shadow 0.3s ease;
}
input:focus {
box-shadow: 0 0 5px 2px #769a67;
}
.addToCart-btn {
text-align: center;
padding: 20px;
}
button {
background-color: #769a67;
width: 100%;
padding: 15px;
border-radius: 10px;
border: 0;
font-family: "Rubik", sans-serif;
color: white;
font-size: larger;
}
button:hover {
background-color: #466f34;
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
overflow-y: auto;
}
ul li {
background-color: #fffdf8;
padding: 10px 10px;
border-radius: 8px;
font-size: medium;
flex-grow: 1;
color: green;
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
text-align: center;
user-select: none;
}
ul li:hover {
background-color: #e6f2e1;
}
#Task-list {
margin: 0 15px;
}