-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (36 loc) · 806 Bytes
/
style.css
File metadata and controls
40 lines (36 loc) · 806 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
@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;
width: 100%;
}
.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 .inner {
background-color: #333;
width: 100%;
padding: 1rem;
color: #fff;
border-top-left-radius: 10px;
border-bottom-right-radius: 10px;
display: flex;
align-items: center;
justify-content: center;
font-family: "Montserrat", monospace;
}