-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
141 lines (122 loc) · 2.94 KB
/
Copy pathstyle.css
File metadata and controls
141 lines (122 loc) · 2.94 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
font-family: 'Roboto', sans-serif;
background-color: #020202; /* Dark background for a hacking vibe */
color: #e0e0e0; /* Light text for contrast */
}
h1 {
font-size: 75px;
color: #910808; /* Green color for headings */
text-align: center;
margin-top: 30px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
height: 100vh;
padding: 20px;
}
#heading-container {
margin: 30px 0;
display: flex;
justify-content: center;
letter-spacing: 5px;
font-style: italic;
color: #e0e0e0; /* Light color for heading */
}
#main-container {
display: flex;
justify-content: center;
flex-wrap: wrap; /* Allow wrapping for responsiveness */
width: 100%;
}
.box {
background-color: #1c1a1ac0; /* Darker box background */
width: 475px;
height: auto; /* Allow height to adjust based on content */
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
margin: 15px;
border-radius: 8px;
overflow: hidden;
transition: transform 0.3s; /* Add hover effect */
}
.box:hover {
transform: scale(1.02); /* Slight scale on hover */
}
.box .heading {
background-color: #910808; /* Consistent heading color */
color: #fff;
padding: 15px;
text-align: center;
font-size: 24px;
}
.box #controls {
padding: 20px;
}
.box #controls .row {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 15px;
}
input[type="radio"],
select,
input[type="text"],
#shift-input,
#mod-input,
#alphabet-input {
padding: 10px;
border: 1px solid #e3e8ec;
border-radius: 4px;
font-size: 14px;
width: 100%;
background-color: #3a3a3a; /* Darker input fields */
color: #e0e0e0; /* Light text */
}
input[type="radio"]:checked + label {
color: #910808; /* Highlight selected radio */
}
.box textarea {
width: 100%;
height: 150px; /* Adjust height for better usability */
padding: 15px;
font-size: 14px;
border: 1px solid #e3e8ec;
border-radius: 4px;
background-color: #3a3a3a; /* Darker textarea */
color: #e0e0e0; /* Light text */
resize: none; /* Disable resizing */
}
#submit {
cursor: pointer;
padding: 10px 20px;
font-weight: 500;
color: #fff;
background-color: #910808; /* Button color */
border: none;
border-radius: 4px;
transition: background-color 0.3s, transform 0.3s;
}
#submit:hover {
background-color: #910808; /* Darker green on hover */
transform: scale(1.05); /* Slight scale on hover */
}
.column {
margin-top: 10px;
}
.column div {
margin-bottom: 10px;
font-weight: 500;
color: #90999e; /* Slightly lighter gray for column text */
}
#status {
margin-top: 10px;
font-weight: bold;
color: #910808; /* Green color for status */
}