-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
117 lines (98 loc) · 1.82 KB
/
styles.css
File metadata and controls
117 lines (98 loc) · 1.82 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
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
body {
color: #ffffff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #121212;
}
.container {
max-width: 900px;
margin: 20px auto;
padding: 15px;
}
p {
margin: 0 0 0 0;
}
label {
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 12px;
}
.card {
padding: 20px;
margin: 10px 0;
border-radius: 15px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
text-align: center;
background-color: #1e1e1e;
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.inner-card-style {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 10px;
width: 100%;
}
input, select {
flex: 1;
min-width: 150px;
}
@media (max-width: 576px) {
.inner-card-style {
flex-direction: column;
}
}
input:focus, select:focus {
border-color: #007bff;
outline: none;
}
button {
width: 100%;
padding: 12px;
margin-top: 10px;
margin-bottom: 10px;
border: 1px solid #495057 !important;
border-radius: 5px;
background-color: #212529 !important;
color: #ffffff;
transition: background-color 0.3s ease, border-color 0.3s ease;
}
button:hover {
background-color: #0056b3;
border-color: #0056b3;
cursor: pointer;
}
#clock {
font-size: 1.1rem;
font-weight: bold;
margin-bottom: 0;
}
#timer, #countdown {
font-size: 1.5rem;
font-weight: bold;
}
.inner-card-style {
display: flex;
gap: 10px;
}
@media (max-width: 576px) {
#clock {
font-size: 2.5rem;
}
#timer, #countdown {
font-size: 1.25rem;
}
.card {
padding: 15px;
}
}
@media (min-width: 577px) {
.container {
padding: 30px;
}
}