-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (60 loc) · 1.18 KB
/
style.css
File metadata and controls
64 lines (60 loc) · 1.18 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
*{
padding: 0;
margin: 0;
box-sizing: border-box;
}
:root{
--primary-color: #12a197;
--border-color: #bbb;
}
body{
height: 100vh;
max-width: 580px;
padding: 8px;
margin: auto;
display: grid;
grid-template-rows: 75px auto auto 1fr auto;
gap: 24px;
}
h1{
display: grid;
place-items: center;
font-size: 1.6rem;
text-transform: uppercase;
color: var(--primary-color);
border: 1px solid var(--border-color);
box-shadow: 2px 2px 4px var(--border-color);
}
.container-problem{
display: grid;
}
.problem{
padding: 4px 12px;
font-size: 1.5rem;
color: var(--primary-color);
border: 1px solid var(--border-color);
box-shadow: 2px 2px 4px var(--border-color);
}
.solve{
height: 64px;
color: var(--primary-color);
font-size: 2rem;
}
.container-input{
display: grid;
grid-template-rows: auto 1fr;
}
.input {
padding: 12px;
font-size: 2rem;
color: var(--primary-color);
resize: none;
outline: none;
border: 1px solid var(--border-color);
box-shadow: 2px 2px 4px var(--border-color);
}
footer {
text-align: center;
padding: 8px;
color: var(--primary-color)
}