-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
174 lines (158 loc) · 2.77 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
* {
margin: 0;
padding: 0;
}
body {
background: linear-gradient(-135deg, rgba(71, 76, 211, 1), rgba(164, 46, 201, 1)) no-repeat center center fixed;
background-size: cover;
text-align: center;
font-family: 'Segoe UI', sans-serif;
overflow-wrap: break-word;
overflow: hidden;
}
/* main container */
/* .container {
width: 90%;
margin: 30px auto;
display: flex;
flex-direction: row;
justify-content: space-between;
} */
section {
width: 28%;
margin: 75px auto;
background-color: #4e4b4b;
border-radius: 5px;
}
.header {
color: white;
background-color: #444141;
padding: 20px;
border-radius: 5px;
}
footer {
padding: 25px ;
color: #444141;
}
.header h1 {
font-weight: bold;
}
.contentInfo {
background-color: #3a3d44;
max-width: 80%;
margin: 20px auto;
padding: 10px;
color: white;
border-radius: 5px;
}
/* section 1 */
.timeInfo {
display: flex;
width: 80%;
margin: 50px auto;
justify-content: space-between;
/* border: 2px red solid; */
padding: 0 0 50px;
}
button {
height: 50px;
width: 90px;
font-size: medium;
border-radius: 5px;
color: white;
border: none;
margin: 0 auto 30px;
}
.hours,
.minutes,
.seconds {
margin: 50px auto;
width: 32%;
color: white;
}
.hours h2,
.minutes h2,
.seconds h2 {
border-top-right-radius: 3px;
border-top-left-radius: 3px;
padding: 10px 0;
font-weight: lighter;
}
.hours h3,
.minutes h3,
.seconds h3 {
border-bottom-right-radius: 3px;
border-bottom-left-radius: 3px;
padding: 5px 0;
}
.hours h2,
.minutes h2 {
background-color: #2c9bf4;
}
.seconds h2 {
background-color: #ff006a;
}
.hours h3,
.minutes h3 {
background-color: #1a78c5;
}
.seconds h3 {
background-color: #db0d63;
}
/* section 2 */
.timerInputs,
.pomodoroInputs {
display: flex;
flex-direction: column;
width: 80%;
margin: 50px auto;
}
.inputTimeHour input,
.inputTimeMinutes input,
.inputTimeSeconds input,
.pomodoroInputs input {
max-width: 50%;
padding: 10px;
border-radius: 3px;
margin: 3px auto;
font-size: 24px;
text-transform: uppercase;
text-align: center;
border: none;
color: black;
}
.timerDecisionButtons,
.pomodoroDecisonButtons {
display: flex;
max-width: 70%;
margin: auto;
justify-content: space-between;
}
.startButton {
background-color: #2abd8c;
}
.resetButton {
background-color: #d62727;
}
.startButton,
.resetButton {
margin-right: 5px;
font-weight: 500;
/* position: relative; */
}
/* section 3 */
.pomodoroInputs {
color: white;
font-size: large;
font-weight: bold;
margin: 13% auto;
}
.timeUp {
background-color: red;
}
/*
background-color: #2c9bf4;
background-color: #1a78c5;
background-color: #ff006a;
background-color: #db0d63;
*/