-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
46 lines (46 loc) · 981 Bytes
/
style.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
*{
padding: 0;
margin: 0;
font-family: "Bree Serif", sans-serif;
}
body{
background-color: #f7f7f7;
}
#form{
display: none;
}
#typing{
padding: 4px 6px;
font-size: 22px;
border: 2px solid rgba(4, 143, 143);
border-radius: 4px;
}
.btn{
background-color: rgb(16, 158, 158);
font-size: 17px;
border: 2px solid rgba(4, 143, 143, 0.384);
color: #f7f7f7;
}
.btn:hover{
background-color: rgb(16, 158, 158);
color: #f7f7f7;
border: 2px solid rgba(4, 143, 143, 0.384);
animation: example 0.5s linear;
}
@keyframes example {
0%{
background-color: rgb(16, 158, 158);
border: 2px solid rgba(4, 143, 143, 0.384);
color: #f7f7f7;
}
0%{
background-color: rgb(120, 209, 224);
border: 2px solid rgba(4, 143, 143);
color: #f7f7f7;
}
}
#names{
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}