-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
69 lines (69 loc) · 1.1 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
body
{
background:black;
color: white;
align-items: center;
display: flex;
justify-content: center;
font-size: 5vw;
font-family: 'Product Sans', sans-serif;
transition: 0.5s;
}
button
{
color:gray;
cursor: pointer;
background: transparent;
border: none;
font-size: 3vw;
font-family: 'Product Sans', sans-serif;
justify-self: center;
display: flex;
position: relative;
transition: 0.5s;
}
button:hover
{
color:white;
}
button:focus
{
color:white;
outline:none;
}
input
{
background: transparent;
font-family: 'Product Sans', sans-serif;
border: none;
font-size: 3vw;
color:white;
transition: 0.5s;
}
input:focus {
background: white;
color:black;
border: none;
outline: none;
}
.number
{
position:absolute;
left:1vw;
top:-3vw;
margin:0vw;
font-size:20vw;
color:gray;
transition: 0.5s;
}
#progress
{
background-color: rgb(20,20,20);
position:absolute;
left:0vw;
height: 100%;
overflow: auto;
width:0;
z-index:-1;
transition: 0.5s ease-in-out;
}