-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
71 lines (70 loc) · 1.29 KB
/
Copy pathindex.css
File metadata and controls
71 lines (70 loc) · 1.29 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
@import url('https://fonts.googleapis.com/css?family=Press+Start+2P&display=swap');
*{
margin: 0;
padding: 0;
background-color: #51dfff;
font-family: 'Press Start 2P', sans-serif;
}
.section-first,
.section-second{
height: 100vh;
width: 100vw;
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
}
.section-first button{
margin: 20px;
padding: 1rem;
background-color: rgb(13, 122, 122);
color: #fff;
border: none;
box-shadow: 1px 2px 2px black;
}
.section-first button:active{
box-shadow: 0px 0px 2px black;
}
.insects-list {
display: flex;
flex-wrap: wrap;
list-style: none;
width: 60%;
justify-content: space-around;
}
.insects-list button {
padding: 10px;
}
.insects-list img {
height: 100px;
width: 100px;
}
.up{
margin-top: -100vh;
}
.section-second h1 {
margin: 20px;
}
.choose-insect-btn:hover{
background-color: transparent;
color: #fff;
}
.section-third{
height: 100vh;
width: 100vw;
position: relative;
padding: 10px;
}
.created-insect-btn{
position: absolute;
border: none;
/* top: 10%;
left: 100px; */
height: 100px;
width: 100px;
}
.created-insect-btn img{
height: 100px;
width: 100px;
cursor: pointer;
}