-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (75 loc) · 1.65 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
/*Tablet*/
@media only screen and (min-width: 600px) {
center{
zoom: 125%;
}
}
@media only screen and (min-width: 768px) {
center{
zoom: 150%;
}
}
body {
font-family: Arial, sans-serif;
margin: 20px;
background-color: #9cd6e3;
}
h1 {
color: #333;
}
p {
color: #666;
}
button {
padding: 10px;
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
zoom: 125%
}
button:hover {
background-color: #45a049;
}
.spinner-icon {
animation: spin 1s infinite linear;
}
@keyframes spin {
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}
}
.btn-primary {
zoom:75%;
padding: 10px
border: none;
border-radius: 5px;
cursor: pointer;
background-color: #007bff; /* Button background color */
color: #fff; /* Button text color */
border: none;
transition: background-color 0.3s ease;
}
.btn-primary:hover {
background-color: #45a049; /* Hover state background color */
}
.btn-check {
background-color: #4CAF50; /* Completed button background color */
}
/* Progress bar styles */
.progress {
zoom:75%;
margin-top: 10px;
}
.progress-bar {
zoom:75%;
background-color: green; /* Progress bar color */
}
/* Page background */
body {
background-color: #f1f1f1; /* Page background color */
}