forked from kontur-web-courses/hello-world
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
82 lines (73 loc) · 1.38 KB
/
styles.css
File metadata and controls
82 lines (73 loc) · 1.38 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
body {
font-family: 'Arial', sans-serif;
background-color: #f0f2f5;
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
color: #333;
}
.card {
background-color: #ffffff;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
padding: 24px;
max-width: 400px;
width: 100%;
text-align: left;
}
.card__title {
font-size: 28px;
font-weight: bold;
color: #2c3e50;
margin-bottom: 16px;
}
.card__text {
font-size: 16px;
color: #555;
margin-bottom: 20px;
}
.card__list {
list-style-type: none;
padding: 0;
margin: 0;
}
.card__list-item {
margin: 12px 0;
display: flex;
align-items: center;
justify-content: space-between;
padding: 8px;
background-color: #f9f9f9;
border-radius: 8px;
transition: background-color 0.3s ease;
}
.card__list-item:hover {
background-color: #e9ecef;
}
label {
font-size: 16px;
color: #333;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
}
input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
accent-color: #007bff;
margin-left: auto;
margin-right: 0;
}
#output {
margin-top: 20px;
font-size: 16px;
color: #007bff;
font-weight: bold;
text-align: center;
}