-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (99 loc) · 2.21 KB
/
Copy pathstyles.css
File metadata and controls
112 lines (99 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
body {
margin: 0;
height: 100vh;
display: flex;
align-items: center;
justify-content: center;
background: linear-gradient(135deg, #8ec5fc, #e0c3fc);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.container {
background-color: #ffffffcc;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 25px rgba(0, 0, 0, 0.2);
width: 100%;
max-width: 420px;
text-align: center;
backdrop-filter: blur(10px);
border: 2px solid #fff;
}
.section {
margin-bottom: 20px;
}
h2 {
color: #333;
margin-bottom: 20px;
}
h3 {
color: #444;
}
button {
margin-top: 10px;
padding: 10px 18px;
background: linear-gradient(to right, #f857a6, #ff5858);
color: white;
border: none;
cursor: pointer;
border-radius: 8px;
font-weight: bold;
transition: transform 0.2s, background 0.3s;
margin-right: 5px;
}
button:hover {
background: linear-gradient(to right, #ff5858, #f857a6);
transform: scale(1.05);
}
input[type="number"] {
width: 60px;
padding: 5px;
border: 2px solid #bbb;
border-radius: 5px;
}
label {
font-size: 0.95rem;
color: #333;
}
textarea {
min-width: 250px;
max-width: 100%;
height: 2.5em;
padding: 8px;
font-size: 1rem;
resize: none;
overflow-x: auto;
white-space: nowrap;
border: 2px solid #ccc;
border-radius: 6px;
background-color: #fefefe;
}
.toast {
visibility: hidden;
min-width: 200px;
background-color: #222;
color: #fff;
text-align: center;
border-radius: 8px;
padding: 14px;
position: fixed;
z-index: 1;
left: 50%;
bottom: 40px;
transform: translateX(-50%);
opacity: 0;
transition: opacity 0.5s ease, visibility 0.5s, transform 0.3s ease;
}
.toast.show {
visibility: visible;
opacity: 1;
transform: translateX(-50%) translateY(-10px);
}
.checkboxItem {
margin-bottom: 8px;
}
.checkboxItem label {
display: inline-block;
width: 200px;
vertical-align: middle;
margin-left: 5px;
}