-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
64 lines (58 loc) · 1.33 KB
/
Copy pathstyles.css
File metadata and controls
64 lines (58 loc) · 1.33 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
/* General Styling */
body {
background-color: #000033;
color: #E0E0E0;
font-family: 'Arial', sans-serif;
margin: 0;
padding: 20px;
text-align: left;
}
/* Header Styling */
h1 {
color: #00E676;
text-shadow: 2px 2px 10px rgba(0, 230, 118, 0.8);
}
/* Form Styling */
form {
background-color: #000066;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 15px rgba(0, 230, 118, 0.2);
display: inline-block;
}
/* Textarea Styling */
textarea {
background-color: #000099;
color: #CCFF00; /* Changed to neon yellow (was #80D8FF) */
border: 1px solid #00E676;
border-radius: 5px;
padding: 10px;
font-size: 16px;
resize: both;
}
/* Button Styling */
button {
background: linear-gradient(45deg, #00E676, #6200EA);
color: white;
border: none;
padding: 12px 20px;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}
/* Results Display */
#result {
color: #CCFF00;
font-size: 1.50em; /* 15% size increase relative to parent */
padding: 15px;
margin: 20px 0;
background-color: #000066;
border: 1px solid rgba(0, 230, 118, 0.3);
border-radius: 5px;
white-space: pre-wrap;
}
/* Glow effect */
#result {
box-shadow: 0 0 12px rgba(0, 230, 118, 0.1);
}