-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (50 loc) · 987 Bytes
/
style.css
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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
background: linear-gradient(#e66465, #9198e5);
}
.text {
position: relative;
font-weight: 1000;
align-self: center;
font-size: 2rem;
top: 5rem;
font-family: cursive;
}
#btn {
align-self: center;
position: absolute;
display: flex;
justify-content: center;
top: 2rem;
}
.btn {
padding: .75rem 2rem;
border: 0;
font-weight: 600;
position: relative;
margin: 0 2rem;
font-family: Tahoma, Geneva, Verdana, sans-serif;
color: white;
top: 10rem;
align-self: center;
}
#btn1 {
background-color: green;
border-radius: 1.25rem;
}
#btn2 {
background-color: red;
border-radius: 1.25rem;
}
#btn1:active {
background-color: darkgreen;
border: .20rem solid lightgreen;
}