-
Notifications
You must be signed in to change notification settings - Fork 642
/
Copy pathstyle.css
70 lines (60 loc) · 909 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
61
62
63
64
65
66
67
68
69
* {
margin: 0;
padding: 0;
font-family: "sans";
user-select: none;
}
@font-face {
font-family: "sans";
src: url(font/sans.ttf);
}
h2 {
position: absolute;
top: 0;
padding-top: 140px;
color: white;
font-size: 2rem;
text-align: center;
}
.section {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
background: #19172e;
}
#img {
width: 150px;
height: 150px;
}
#btn {
position: absolute;
cursor: pointer;
color: #fff;
background: #333;
font-size: 24px;
padding: 15px;
border-radius: 8px;
bottom: 0;
margin: 150px ;
}
#btn:active {
background: #1e8e3e;
}
footer {
text-align: center;
color: white;
font-size: 1rem;
position: absolute;
left: 0;
right: 0;
bottom: 0;
margin-bottom: 0;
padding: 5px;
line-height: 3vh;
}
footer a:visited {
color: inherit;
}