-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (72 loc) · 1.14 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
body {
background: #F8F9FA;
}
.target-time {
width: 65px;
margin-right: 10px;
text-align: center;
background: none;
border: none;
outline: none;
font-size: 2em;
}
.time-cnt {
display: flex;
justify-content: center;
height: 40px;
}
.time-info {
align-self: flex-end;
margin-right: 20px;
font-size: 1.5em;
transform: translate(-12px, -3px);
}
.seconds {
margin: 0;
}
.title {
text-align: center;
margin-top: 50px;
}
.calc-container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin-top: 80px;
width: 500px;
margin: auto;
}
h3 {
margin-top: 30px;
}
button {
margin-top: 30px;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
opacity: 1;
}
.goal-pace {
display: flex;
justify-content: space-evenly;
margin-top: 50px
}
.goal-pace h4 {
font-size: 55px;
}
@media (max-width: 1100px) {
.goal-pace {
flex-direction: column;
justify-content: center;
align-items: center;
}
}
@media (max-width: 520px) {
.goal-pace h4 {
font-size: 30px;
}
.calc-container {
width: 330px;
}
}