-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
33 lines (31 loc) · 823 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
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@500&family=EB+Garamond:ital,wght@1,600&family=Hedvig+Letters+Serif:opsz@12..24&display=swap");
body {
display: flex;
flex-wrap: wrap;
background-color: black !important;
color: white !important;
font-family: "EB Garamond", serif !important;
}
.heading{
width: 100%;
text-align: center;
}
.data-values{
display: flex;
flex-wrap: wrap;
}
.card{
padding: 10px;
margin: 5px;
background-image: repeating-linear-gradient
(45deg, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0.05) 2px,transparent 2px, transparent 4px),linear-gradient(0deg, rgb(70, 143, 234),rgb(187, 235, 205));
}
.card-img-top{
width: 100px;
height: 100px;
border: 2px solid black;
}
.card:hover{
cursor: pointer;
background-color:chocolate;
}