-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
52 lines (45 loc) · 768 Bytes
/
styles.css
File metadata and controls
52 lines (45 loc) · 768 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
46
47
48
49
50
51
52
body {
font-family: "Poppins", sans-serif;
text-align: center;
background-color: #6c5b7b;
padding: 10%;
}
.container {
background-color: #c06c84;
padding: 20px;
border-radius: 10px;
max-width: 60%;
margin: auto;
}
button {
font-family: "Poppins", sans-serif;
font-weight: bold;
background-color: #355c7d;
color: white;
padding: 10px 20px;
font-size: 1.1em;
border: none;
border-radius: 5px;
cursor: pointer;
margin-top: 10px;
}
button:hover {
background-color: #f8b195;
color: black;
font-weight: bold;
}
#fact {
font-weight: bold;
}
.emoji {
font-size: 2em;
}
.favicon-credit {
color: #363737;
position: absolute;
bottom: 0;
right: 0;
}
.favicon-credit a {
color: #363737;
}