-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsendiment.css
More file actions
57 lines (52 loc) · 1.17 KB
/
sendiment.css
File metadata and controls
57 lines (52 loc) · 1.17 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
/* General Styling */
body {
font-family: 'Poppins', sans-serif;
background: linear-gradient(135deg, #A8DADC, #A7C7A5);
color: #2C3E50;
text-align: center;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
/* Container */
.container {
background: rgba(255, 255, 255, 0.8);
padding: 30px;
border-radius: 15px;
box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
width: 90%;
max-width: 500px;
}
/* Input Box */
textarea {
width: 100%;
height: 120px;
padding: 15px;
border-radius: 8px;
border: 1px solid #8D6A5E;
font-size: 16px;
margin-top: 10px;
}
/* Button */
button {
background: linear-gradient(135deg, #2C3E50, #8D6A5E);
color: white;
padding: 12px 25px;
border: none;
border-radius: 8px;
cursor: pointer;
font-weight: bold;
margin-top: 15px;
transition: transform 0.3s ease-in-out;
}
button:hover {
transform: scale(1.05);
background: linear-gradient(135deg, #8D6A5E, #2C3E50);
}
/* Result Box */
#result {
margin-top: 20px;
font-size: 18px;
font-weight: bold;
}