-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (57 loc) · 1000 Bytes
/
style.css
File metadata and controls
64 lines (57 loc) · 1000 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
56
57
58
59
60
61
62
63
64
/* style.css */
body {
background: #0f0f0f;
color: #f0f0f0;
font-family: 'Courier New', monospace;
margin: 0;
padding: 0;
text-align: center;
}
.container {
padding: 2rem 1rem;
max-width: 700px;
margin: auto;
}
h1 {
font-size: 2.2rem;
color: #ff3cac;
background: linear-gradient(90deg, #ff3cac, #784ba0, #2b86c5);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.subtext {
font-size: 1rem;
margin-bottom: 1rem;
opacity: 0.7;
}
textarea {
width: 100%;
height: 200px;
margin-top: 1rem;
padding: 1rem;
font-size: 1rem;
background: #1e1e1e;
color: #f0f0f0;
border: none;
border-radius: 8px;
resize: none;
}
button {
margin: 0.5rem;
padding: 0.6rem 1rem;
font-size: 1rem;
background-color: #333;
color: #fff;
border: none;
border-radius: 6px;
cursor: pointer;
transition: 0.2s ease-in-out;
}
button:hover {
background-color: #555;
}
footer {
margin-top: 2rem;
font-size: 0.9rem;
opacity: 0.4;
}