-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
57 lines (49 loc) · 885 Bytes
/
style.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
.frog img {
width: 100%;
}
.clickable {
cursor: pointer;
}
#frogList {
list-style: none;
}
.mainGrid {
display: grid;
grid-template-columns: 1fr;
background: url(imgs/background.jpg);
background-size: cover;
width: 98vw;
height: calc(98vw * 0.53);
}
.frogGrid {
display: grid;
/* grid-template-columns: repeat(5, 1fr); */
justify-items: center;
padding: 0 10vw;
}
.frog {
grid-column: span 1;
grid-row: 3;
padding-bottom: 5vw;
}
.btns {
grid-column: span 1;
grid-row: 1;
cursor: pointer;
align-self: center;
border: solid 1px #6390e4;
border-radius: 2em;
padding: 1em 1.75em;
background: #6390e4;
text-transform: uppercase;
font-family: Arial, Helvetica, sans-serif;
}
.btns:hover {
background: #a4bef0;
text-decoration: underline;
border: solid 1px #a4bef0;
}
.counter {
grid-column: span 1;
align-self: center;
}