-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsheet.css
More file actions
115 lines (98 loc) · 1.72 KB
/
sheet.css
File metadata and controls
115 lines (98 loc) · 1.72 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
body {
background-color: lavender;
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
}
h1 {
text-align: justify;
padding: 20px;
border-radius: 30px;
}
.container {
max-width: 1200px;
margin: auto;
}
.block {
display: flex;
align-items: center;
padding: 50px;
background-color: indigo;
margin: 20px 0;
border-radius: 20px;
color: white;
}
button {
width: 100%;
max-width: 200px;
height: 50px;
margin: 15px 0;
border-radius: 30px;
font-size: 20px;
font-weight: bold;
background-color: #4CAF50;
color: white;
border: none;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #45a049;
box-shadow: 20px 5px 20px black;
}
.block1 {
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
background-color: white;
margin: 20px 0;
border-radius: 20px;
}
#Textbox, #Timebox {
width: 100%;
max-width: 300px;
height: 40px;
margin: 10px ;
font-size: 20px;
}
#output {
display: block;
justify-content: center;
text-align: center;
font-size: 30px;
background-color: azure;
padding: 10px;
margin: 20px 0;
}
#endblock {
display: flex;
justify-content: center;
}
button.pause {
background-color: #f44336;
}
button.pause:hover {
background-color: #da190b;
}
@media (max-width: 768px) {
.block, .block1 {
padding: 20px;
}
button {
width: 90%;
}
h1 {
font-size: 24px;
}
}
@media (max-width: 480px) {
h1 {
font-size: 20px;
}
#Textbox, #Timebox {
max-width: 90%;
}
#output {
font-size: 24px;
}
}