-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
128 lines (110 loc) · 2.21 KB
/
style.css
File metadata and controls
128 lines (110 loc) · 2.21 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
118
119
120
121
122
123
124
125
126
127
128
body {
font-family: 'Poppins', sans-serif;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
margin: 0;
background: #f0f0f0;
transition: background-color 0.5s ease;
}
.container {
background: rgba(255, 255, 255, 0.8);
border-radius: 20px;
padding: 2rem;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
text-align: center;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}
.container:hover {
transform: translateY(-5px);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}
h2 {
margin: 0.5rem 0;
font-size: 2rem;
color: #333;
transition: color 0.3s ease;
}
.controls {
display: flex;
justify-content: center;
gap: 1rem;
margin-top: 2rem;
}
.btn, .btn-lista {
padding: 0.8rem 1.5rem;
font-size: 1rem;
border: none;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
background: #4a4a4a;
color: white;
text-transform: uppercase;
letter-spacing: 1px;
font-weight: bold;
}
.btn:hover, .btn-lista:hover {
transform: translateY(-2px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.btn:active, .btn-lista:active {
transform: translateY(1px);
}
.btn-lista {
position: fixed;
top: 20px;
right: 20px;
z-index: 1000;
background: #333;
}
dialog {
border: none;
border-radius: 10px;
padding: 2rem;
background: white;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
dialog::backdrop {
background: rgba(0, 0, 0, 0.5);
backdrop-filter: blur(5px);
}
#dialog-title {
font-size: 1.8rem;
margin-bottom: 1rem;
color: #333;
font-weight: 600;
text-align: center;
}
#color-list {
list-style-type: none;
padding: 0;
}
#color-list li {
display: flex;
align-items: center;
justify-content: space-between;
padding: 0.5rem 0;
border-bottom: 1px solid #eee;
}
#color-list li:last-child {
border-bottom: none;
}
@media (max-width: 768px) {
.container {
width: 90%;
padding: 1.5rem;
}
h2 {
font-size: 1.5rem;
}
.controls {
flex-direction: column;
}
.btn, .btn-lista {
width: 100%;
margin-bottom: 0.5rem;
}
}