-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathstyle.css
More file actions
45 lines (40 loc) · 929 Bytes
/
style.css
File metadata and controls
45 lines (40 loc) · 929 Bytes
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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500&display=swap');
#heading{
text-align: center;
font-family: 'Montserrat',monospace;
}
#container {
display: flex;
justify-content: space-around;
align-items: center;
flex-wrap: wrap;
}
.card {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.4);
border-radius: 10px;
margin: 2rem;
}
.card:hover{
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.8);
}
.card img{
width: 200px;
height: 200px;
margin: 5px;
}
.card .inner{
min-height: 2rem;
background-color: #333;
width: 100%;
color: #fff;
border-bottom-left-radius: 10px;
border-bottom-right-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-family: 'Montserrat',monospace;
}