-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (54 loc) · 1.08 KB
/
style.css
File metadata and controls
60 lines (54 loc) · 1.08 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
@import "./styles/footer.css";
@import "./styles/header.css";
main {
min-height: calc(100vh - 70px);
max-width: 100vw;
background-color: #363537;
display: flex;
flex-direction: column;
justify-content: space-around;
align-items: center;
}
h2 {
margin-top: 0.8em;
margin-bottom: 0.8em;
font-size: 2rem;
font-weight: 500;
color: #f0a202;
}
main div ul {
display: flex;
min-height: 500px;
max-width: 450px;
flex-wrap: wrap;
justify-content: space-between;
}
main div ul li {
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
height: 200px;
width: 200px;
border: 1px solid #f0a202;
border-radius: 20px;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
transition: all 0.3s ease-in-out;
}
main div ul li img {
width: 60px;
height: 60px;
}
main div ul li:hover {
transform: scale(1.1);
border: 1px solid #ef2d56;
border-radius: 50%;
box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
position: relative;
}
main div a {
height: min-content;
width: min-content;
color: #f0a202;
text-decoration: none;
}