-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (36 loc) · 659 Bytes
/
style.css
File metadata and controls
40 lines (36 loc) · 659 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
body {
padding: 0;
margin: 0;
width: 100vw;
height: 100vh;
font-family: "Syne Mono", monospace;
background-color: #7236ff;
display: flex;
align-items: center;
justify-content: center;
}
.container {
width: 750px;
max-width: 75%;
text-align: center;
background-color: #ffffff;
border-radius: 5px;
box-shadow: 0 0 5px 1px;
padding: 20px;
}
.button {
background-color: #4400ff;
color: #ffffff;
border-radius: 4px;
padding: 10px 40px;
margin: 15px 0px;
font-size: 1.75rem;
border: 5px solid #4400ff;
}
.button:hover {
border: 5px solid black;
cursor: pointer;
}
.button:active {
border: 5px solid #ffd300;
}