-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
41 lines (34 loc) · 688 Bytes
/
style.css
File metadata and controls
41 lines (34 loc) · 688 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
/* Font */
@import url('https://fonts.googleapis.com/css2?family=Hammersmith+One&display=swap');
* {
margin: 0;
padding: 0;
font-family: 'Hammersmith One', sans-serif;
color: black;
}
.container {
text-align: center;
margin-top: 20%;
}
.container span {
padding: 1em;
border: 5px solid black;
background-color: black;
border-radius: 64px;
font-size: 1.5em;
color: white;
}
.container button {
margin-top: 3em;
padding: 1em;
width: 10%;
border: none;
border-radius: 64px;
transition: 0.5s;
cursor: pointer;
}
.container button:hover {
background-color: black;
color: white;
transition: 0.5s;
}