-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
76 lines (66 loc) · 1.15 KB
/
Copy pathstyle.css
File metadata and controls
76 lines (66 loc) · 1.15 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
style.css
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
font-family: Arial, sans-serif;
background: linear-gradient(135deg, #ff7e5f, #feb47b);
}
.container {
background-color: #ffffff;
padding: 20px 30px;
border-radius: 12px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
text-align: center;
width: 100%;
max-width: 400px;
}
h1 {
font-size: 24px;
color: #333;
margin-bottom: 10px;
}
p {
font-size: 16px;
color: #666;
margin-bottom: 15px;
}
textarea {
width: 100%;
height: 100px;
border: 1px solid #ddd;
border-radius: 8px;
padding: 10px;
font-size: 16px;
resize: none;
outline: none;
}
textarea::placeholder {
color: #aaa;
}
.counter-display {
display: flex;
justify-content: center;
gap: 10px;
font-size: 18px;
font-weight: bold;
color: #ff7e5f;
margin-top: 15px;
}
footer {
margin-top: 20px;
}
footer a {
color: #ff7e5f;
text-decoration: none;
font-weight: bold;
}
footer a:hover {
text-decoration: underline;
}