-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
78 lines (70 loc) · 1.26 KB
/
index.css
File metadata and controls
78 lines (70 loc) · 1.26 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
html, body {
margin: 0;
padding: 0;
font-family:monospace;
background-color: #c2e9f5;
color:black;
user-select: none;
}
.container {
display: flex;
flex-direction: column;
max-width: 320px;
margin: 30px auto;
}
img {
width: 150px;
margin: 0 auto;
}
input {
color:black;
background-color:#D7EEFF;
border: 0;
padding: 15px;
border-radius: 8px;
font-size: 20px;
text-align: center;
font-family:monospace;
margin: 10px 0;
box-shadow:5px 5px 5px;
}
input:hover{
border:solid 2px black;
}
button {
color:black;
background-color: #a9e5e5;
border: 0;
padding: 15px;
border-radius: 8px;
font-size: 20px;
text-align: center;
font-family:monospace;
box-shadow:5px 5px 5px;
}
button:hover {
background-color: #93c7c7;
cursor: pointer;
}
ul {
list-style-type: none;
padding: 0;
display: flex;
flex-wrap: wrap;
gap: 10px;
}
ul li {
font-size: 20px;
background-color: #a6c8c8;
padding: 15px;
border-radius: 8px;
flex-grow: 1;
text-align: center;
box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.2);
}
ul li:hover {
background-color: #93c7c7;
cursor: pointer;
border:dashed 1px #7ca8a8;
box-shadow:5px 5px 5px;
}