This repository was archived by the owner on Aug 2, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
104 lines (89 loc) · 1.8 KB
/
Copy pathstyles.css
File metadata and controls
104 lines (89 loc) · 1.8 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
body {
font-family: 'Roboto', sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f2f2f2;
transition: background-color 0.3s;
}
body.dark-mode {
background-color: #121212;
color: #fff;
}
.dark-mode-toggle {
position: absolute;
top: 20px;
right: 20px;
cursor: pointer;
}
.icon {
font-size: 24px;
color: #2196F3;
}
body.dark-mode .icon {
color: #BB86FC;
}
.container {
background-color: #fff;
padding: 30px;
border-radius: 15px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 100%;
text-align: center;
transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
}
body.dark-mode .container {
background-color: #1E1E1E;
color: #fff;
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
label {
display: block;
margin-top: 20px;
color: #2196F3;
}
input, textarea {
width: calc(100% - 16px);
padding: 12px;
margin-top: 10px;
margin-bottom: 20px;
box-sizing: border-box;
border: 2px solid #2196F3;
border-radius: 8px;
outline: none;
}
button {
background-color: #2196F3;
color: #fff;
padding: 15px;
border: none;
border-radius: 8px;
cursor: pointer;
transition: background-color 0.3s;
}
body.dark-mode button {
background-color: #BB86FC;
}
button:hover {
background-color: #1565C0;
}
#response {
margin-top: 30px;
font-weight: bold;
color: #333;
}
body.dark-mode #response {
color: #fff;
}
.char-count {
display: block;
font-size: 14px;
color: #555;
margin-top: 10px;
}
body.dark-mode .char-count {
color: #ddd;
}