-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
55 lines (48 loc) · 1016 Bytes
/
style.css
File metadata and controls
55 lines (48 loc) · 1016 Bytes
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
body {
font-family: 'Arial', sans-serif;
background-color: #f4f4f4;
text-align: center;
}
.container {
max-width: 500px;
margin: auto;
padding: 20px;
background: white;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.main-header {
font-size: 2.5rem;
font-weight: bold;
background: linear-gradient(to right, #ff5733, #ffbd69);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subheader {
color: #34495e;
margin-bottom: 20px;
}
textarea {
width: 100%;
height: 100px;
border-radius: 8px;
border: 1px solid #ddd;
padding: 10px;
}
button {
background-color: #ff5733;
color: white;
border: none;
padding: 12px 20px;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
}
button:hover {
background-color: #c0392b;
}
.result-box {
background: #f7f9fc;
padding: 15px;
border-radius: 8px;
}