-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
90 lines (78 loc) · 1.43 KB
/
style.css
File metadata and controls
90 lines (78 loc) · 1.43 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
body {
background: url("images/cloud.jpg") no-repeat center center fixed;
background-size: cover;
background-repeat: no-repeat;
color: #1d99f7;
font-size: 25px;
font-family: 'VT323', monospace;
cursor: url('images/cursor-blue-pink.png'), auto;
}
#welcome_text{
text-align: center;
}
span{
color: #E4BECD;
}
.container{
position: relative;
width: 550px;
margin-top: 50px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
#frame{
display: block;
width: 100%;
height: auto;
}
#screens{
position: absolute;
height: 280px;
width: 380px;
top: 80px;
left: 85px;
background-color: black;
overflow: scroll;
overflow-x: hidden;
scrollbar-color: dark;
}
#home_screen{
overflow-y: hidden;
}
#poem_screen{
display: none;
}
#on_off_btn{
height: 20px;
width: 25px;
background-color: #2BC600;
position: absolute;
top: 640px;
left: 420px;
}
.blinking{
animation:blinkingText 1.2s infinite;
}
@keyframes blinkingText{
0%{ color: #E4BECD; }
49%{ color: #E4BECD; }
60%{ color: transparent; }
99%{ color:transparent; }
100%{ color: #E4BECD; }
}
/*scroll bar*/
::-webkit-scrollbar {
width: 10px;
}
::-webkit-scrollbar-track {
background: black;
}
::-webkit-scrollbar-thumb {
background: #E4BECD;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}