-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (92 loc) · 1.72 KB
/
style.css
File metadata and controls
105 lines (92 loc) · 1.72 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
/* Dark Mode Styling */
body {
font-family: 'Arial', sans-serif;
background-color: #1e1e1e !important;
color: #e0e0e0;
margin: 0;
padding: 0;
}
.content{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
img{
width: 100vw;
max-width: 400px;
}
.container {
background-color: #1e1e1e;
padding: 30px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
width: 99%;
max-width: 700px;
text-align: center;
box-sizing: border-box;
}
.container h1 {
color: #e0e0e0;
font-size: 32px;
margin-bottom: 20px;
}
.container input[type="text"],
textarea,
.container input[type="file"],
.container button {
width: 90%;
margin: 10px 0;
padding: 15px;
font-size: 16px;
background-color: #333;
border: 1px solid #444;
border-radius: 5px;
color: #e0e0e0;
}
.container textarea {
min-height: 300px;
resize: vertical;
font-family: 'Courier New', monospace;
background-color: #252525;
border: 1px solid #555;
color: #e0e0e0;
font-size: 16px;
}
.container button {
background-color: #28a745;
color: white;
border: none;
cursor: pointer;
}
.container button:hover {
background-color: #218838;
}
#result {
margin-top: 20px;
padding: 15px;
border: 1px solid #444;
background-color: #2a2a2a;
display: none;
text-align: left;
}
a {
color: #66b3ff;
text-decoration: none;
font-weight: bold;
}
a:hover {
text-decoration: underline;
}
/* Responsiveness */
@media (max-width: 600px) {
.container {
padding: 20px;
}
input[type="text"],
textarea,
input[type="file"],
button {
font-size: 14px;
}
}