-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
111 lines (96 loc) · 1.79 KB
/
styles.css
File metadata and controls
111 lines (96 loc) · 1.79 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
body {
font-family: 'Courier New', monospace;
background-color: black;
color: #00ff00;
text-align: center;
}
.container {
max-width: 800px;
max-height: 100vh;
margin: 20px auto;
padding: 20px;
background-color: #001100;
border-radius: 10px;
box-shadow: 0 0 15px #00ff00;
}
h1 {
color: #00ff00;
text-shadow: 0 0 10px #00ff00;
}
.box, .key-box {
margin: 20px 0;
padding: 15px;
background-color: black;
border: 1px solid #00ff00;
border-radius: 8px;
}
.input-container {
display: flex;
justify-content: space-between;
}
textarea {
width: 48%;
height: 100px;
background-color: black;
color: #00ff00;
border: 1px solid #00ff00;
padding: 10px;
resize: none;
}
button, .custom-file-upload {
margin: 10px;
padding: 10px;
background-color: black;
border: 1px solid #00ff00;
cursor: pointer;
color: #00ff00;
font-weight: bold;
border-radius: 5px;
display: inline-block;
}
button:hover, .custom-file-upload:hover {
background-color: #002200;
}
/* Hide default file input */
input[type="file"] {
display: none;
}
/* Floating Reset Fields Button (Always Visible) */
#resetFieldsBtn {
position: fixed;
top: 10px;
right: 10px;
background-color: red;
color: white;
border: none;
padding: 8px 12px;
cursor: pointer;
font-weight: bold;
border-radius: 5px;
z-index: 1000;
}
#resetFieldsBtn:hover {
background-color: darkred;
}
footer {
margin-top: 20px;
}
footer p {
color: #00ff00;
}
footer a {
color: cyan;
text-decoration: none;
}
#visit-counter {
margin-top: 20px;
font-size: 16px;
color: cyan;
}
#user-ip {
position: absolute;
top: 10px;
left: 10px;
font-size: 16px;
color: yellow;
}