-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
63 lines (54 loc) · 1.19 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Zen+Antique&display=swap");
* {
box-sizing: border-box;
}
body {
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background: linear-gradient(to left top, rgb(181, 106, 106), rgb(116, 109, 158));
font-family: "Poppins", sans-serif;
}
.container {
background-color: rgb(93,183,235);
font-size: 2.4rem;
font-weight: 600;
padding: 4rem;
border-radius: 0.5rem;
width: 1000px;
min-height: 600px;
max-width: 90%;
box-shadow: 1px 5px 6px rgb(80,80,80);
}
.container .typeInput {
margin-top: 4rem;
font-size: 3rem;
}
.timer {
position: absolute;
top: 2rem;
font-size: 5rem;
font-weight: bold;
color: rgb(0, 0, 0);
}
.type-display {
margin-bottom: 1rem;
margin-left: 1rem;
}
.typeInput {
background-color: transparent;
border: 2px solid rgb(158, 52, 52);
outline: none;
width: 100%;
height: 14rem;
margin: auto;
resize: none;
padding: 0.5rem, 1rem;
border-radius: 0.5rem;
font-size: 1rem;
}
.typeInput:focus {
border-color: black;
}