-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
70 lines (70 loc) · 1.37 KB
/
style.css
File metadata and controls
70 lines (70 loc) · 1.37 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
64
65
66
67
68
69
70
body {
height: calc(100vh - 10em);
padding: 1em;
color: rgba(255, 255, 255, 0.75);
font-family: 'Anonymous Pro', monospace;
background-color: rgb(0, 0, 0);
}
.typed{
position: relative;
top: 35%;
width: 25em;
margin: 0 auto;
font-size: 200%;
text-align: center;
}
#a {
color: #c80003;
text-decoration: none;
}
#b {
color: #4D6B8C;
text-decoration: none;
}
h1{
font-size: 100%;
color: rgba(255, 255, 255, 0.75);
font-family: 'Anonymous Pro', monospace;
}
i{
animation: blinker 0.8s linear infinite;
font-size: 100%;
color: rgba(255, 255, 255, 0.75);
font-family: 'Anonymous Pro', monospace;
}
@keyframes blinker {
50% { opacity: 0; }
}
.button {
background-color: rgb(25, 25, 25);
border: 2px solid #555555;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
/* display: inline-block; */
font-size: 100%;
margin: 4px 2px;
cursor: pointer;
position: fixed;
left: 45.5%;
top: 70%;
}
@media only screen
and (min-device-width : 320px)
and (max-device-width : 480px)
{
.button{
font-size: 180%;
left: 40.5%;
top: 60%;
}
.typed{
font-size: 250%;
left: -3%;
top: 31%;
}
#a,#b{
font-size: 170%;
}
}