-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
58 lines (52 loc) · 1016 Bytes
/
index.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
html, body {
margin: 0;
height: 100vh;
box-sizing: border-box;
display: flex;
justify-content: flex-start;
align-items: center;
padding: 1rem 1rem;
flex-direction: column;
gap: 1rem;
background-color: whitesmoke;
}
input,
button {
cursor: pointer;
width: 40%;
height: 5vh;
font-size: large;
border-radius: 0.5rem;
-webkit-border-radius: 0.5rem;
-moz-border-radius: 0.5rem;
-ms-border-radius: 0.5rem;
-o-border-radius: 0.5rem;
border: none;
}
input {
text-align: center;
background-color: rgb(151, 212, 212);
}
button {
padding: auto auto;
background-color: green;
color: gold;
}
img {
width: 50%;
}
ul {
display: grid;
grid-template-columns: 13rem 13rem 13rem;
grid-gap: 1rem;
list-style-type: none;
}
ul li {
border-radius: 0.5rem;
width: 10rem;
height: 2rem;
background-color: rgb(151, 212, 212);
text-align: center;
align-content: center;
font-size: 1.5rem;
}