Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
Latest commit
63 lines (60 loc) · 1.08 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (60 loc) · 1.08 KB
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
61
62
63
body {
background-repeat: no-repeat;
background-attachment: fixed;
background-size: cover;
}
h1 {
text-align: center;
color:#ffef00;
font-family:"Roboto", sans-serif;
font-weight:100;
font-size:128px;
}
.button {
width: auto;
font-family:"Roboto", sans-serif;
font-weight:700;
color: white;
height:128px;
border-radius:32px;
border-color:#ffef00;
border-style: solid;
background-color:rgba(0,0,0,0.2);
border-width:4px;
cursor: pointer;
outline: none;
font-size:64px;
position: relative;
margin-left:8px;
margin-right:8px;
padding:1rem2rem;
display: flexbox;
}
.button:hover {
background-color:#ffef00;
}
.button:active {
background-color: lightskyblue;
}
div.top {
position: absolute;
top:50%;
left:50%;
margin-right:-50%;
transform:translate(-50%,-50%);
}
div.bottom {
position: absolute;
top:65%;
left:50%;
margin-right:-50%;
transform:translate(-50%,-50%);
}
.footer {
font-family:"Roboto";
font-weight: bolder;
font-size:12px;
color: white;
position: absolute;
top:97%;
}