-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
46 lines (41 loc) · 760 Bytes
/
styles.css
File metadata and controls
46 lines (41 loc) · 760 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
44
45
46
@font-face {
font-family: 'Terminus';
font-style: normal;
font-weight: 400;
src: local('Terminus'), url('https://debianprogrammer.github.io/TerminusTTF-4.49.1.ttf') format('truetype');
}
.center {
position:absolute;
top:50%;
left:50%;
transform: translate(-50%, -50%);
}
#mb {
color: white;
cursor: pointer;
padding: 1rem;
border:2px outset;
text-decoration: none;
text-align: center;
border-radius: 1rem;
transition: 0.5s;
}
#mb:hover {
background: black;
}
html {
background-image: linear-gradient(to right, #000000, #5e81ac);
color: white;
overflow: hidden;
font-family: "Terminus";
font-size: 9px;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
color: black;
text-align: center;
border: none;
}