-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
72 lines (66 loc) · 1.15 KB
/
index.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
body{
margin: 0;
overflow: auto;
background-color: darkgrey;
display: flex;
align-items: center;
/* justify-content: center; */
flex-direction: row;
}
#myCanvas{
background-color: lightgrey;
overflow: scroll;
}
#description{
height: 100vh;
width: 300px;
background-color: black;
font-family: monospace;
font-size: medium;
color: green;
padding: 0 20px;
margin: 0;
line-height: 1.5;
display: inline-block;
}
strong >.blue{
color:blue !important;
}
strong> .pink{
color: pink !important;
}
strong{
color: yellow;
}
strong:hover{
color: red;
}
.type {
width: 0;
animation: typing;
animation-duration: 1s;
animation-timing-function: steps(220, end);
animation-fill-mode: forwards;
}
@keyframes typing {
from { width: 0 }
to { width: 100% }
}
#buttons{
display: flex;
flex-direction: column;
}
#cars,#dropdown,button{
border-radius: 5px;
margin: 2px;
cursor: pointer;
text-align: center;
margin: 10px 5px;
}
button:hover{
background: green;
}
#myCanvas{
background-color: lightgrey;
overflow: scroll;
}