-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
102 lines (87 loc) · 1.36 KB
/
stylesheet.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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
html {
cursor: url(cursortest.png), auto;
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
}
body {
background-color: #d4d4d4;
color: #66687f;
margin: 0px;
padding: 0px;
height: 100%;
width: 100%;
user-select: none;
}
span {
position: absolute;
display: block;
height: 100%;
background-color: #66687f;
}
#line1 {
width: 9px;
right: 9px;
}
#line2 {
width: 6px;
right: 24px;
}
#line3 {
width: 3px;
right: 33px;
}
#line4 {
width: 2px;
right: 38px;
}
#line5 {
width: 1px;
right: 41px;
}
#line6 {
width: 1px;
right: 43px;
}
#top {
width: 100%;
height: 10%;
text-align: left;
padding: 0px;
margin: 0px;
display: flex;
align-items: center;
}
#toptitle {
text-align: left;
font-size: 4em;
display: flex;
align-items: center;
font-family: "Inconsolata", monospace;
margin: 10px 0px 0px 20px;
}
#bottom {
display: flex;
align-items: center;
width: 100%;
height: 90%;
margin: 0px;
padding: 0px;
}
#bottomtext {
display: flex;
align-items: center;
text-align: left;
padding: 0px;
margin: 0px 0px 0px 20px;
font-size: 1.4em;
vertical-align: middle;
font-family: "Inconsolata", monospace;
border-right: 2px solid rgba(102,104,127,.75);
animation: blinkTextCursor 1050ms steps(2, start) infinite normal;
}
@keyframes blinkTextCursor{
from{border-right-color: rgba(102,104,127,.75);}
to {border-right-color: transparent;}
}