-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (56 loc) · 1.17 KB
/
Copy pathstyle.css
File metadata and controls
64 lines (56 loc) · 1.17 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
body {
background-color: rgb(167, 166, 163);
}
.main {
display: grid;
justify-items: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
}
.heading {
font-size: 50px;
font-weight: 900;
color: rgb(94, 161, 248);
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: black;
}
.fave {
font-size: 40px;
font-weight: 900;
color: rgb(199, 133, 12);
-webkit-text-stroke-width: 2px;
-webkit-text-stroke-color: black;
}
.factsList {
max-width: 80%;
display: grid;
grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
grid-auto-rows: auto;
gap: 30px;
font-family: sans-serif;
padding-top: 50px;
}
.factCard {
box-shadow: 0 4px 8px 0 rgb(0, 0, 0);
padding: 0px 18px 18px 18px;
text-align: center;
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: rgb(94, 161, 248);
}
.factCard:hover {
background-color: rgb(13, 212, 152);
}
img {
width: 100%;
margin-top: 10px;
height: 300px;
object-fit: cover;
display: block;
border: 3px solid rgb(66, 66, 66);
}
button {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: large;
font-weight: bold;
padding: 5px 15px;
background-color: yellow;
}