-
Notifications
You must be signed in to change notification settings - Fork 174
Expand file tree
/
Copy pathstyle.css
More file actions
43 lines (40 loc) · 786 Bytes
/
style.css
File metadata and controls
43 lines (40 loc) · 786 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
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
font-family: "Montserrat", sans-serif;
background: linear-gradient(
to left,
#ce2b37 0%,
#ce2b37 33.33333333333333%,
#f1f2f1 33.33333333333333%,
#f1f2f1 66.66666666666666%,
#009246 66.66666666666666%,
#009246 99.99999999999999%
);
color: black;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
min-height: 100svh;
}
button {
all: unset;
cursor: pointer;
color: white;
background-color: black;
font-weight: 500;
padding: 1rem 2rem;
margin-top: 1.5rem;
position: relative;
top: 0;
transition: 0.25s ease;
transition-property: background, top;
&:hover {
background-color: rgba(0,0,0,0.85);
top: -3px;
}
}