-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
73 lines (70 loc) · 1.18 KB
/
styles.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
70
71
72
*{
box-sizing: border-box;
padding: 0;
margin: 0;
}
body{
color: whitesmoke;
font-family: 'Space Mono', monospace;
}
.main{
background-color: black;
height: 100vh;
width: 100vw;
display:flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
h1{
font-size: 5em;
margin-bottom: 2%;
}
@media screen and (max-width: 600px) {
h1{
font-size: 3em;
}
}
button{
font-family: 'Space Mono', monospace;
background: none;
border: whitesmoke 2px solid;
border-radius: 10px;
width: 150px;
height: 50px;
font-size: 1.2rem;
color: whitesmoke;
transition: all 0.3s ease-out;
}
button:hover{
cursor: pointer;
background-color: whitesmoke;
color:black;
transform: scale(1.05) translateY(-3px);
}
button:active{
background-color: gray;
border: gray;
}
h1::selection{
background-color: whitesmoke;
color: black;
}
span::selection{
background-color: whitesmoke;
color: black;
}
img{
position: fixed;
height: 40px;
top: 20px;
right: 20px;
z-index: 1;
}
.mode{
filter: invert(1);
}
.author{
position: absolute;
bottom: 3%;
}