-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGtuber.css
165 lines (139 loc) · 3.06 KB
/
Gtuber.css
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/* Reset some default browser styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #000; /* Black background */
color: #fff; /* White text color */
line-height: 1.6;
}
header {
display: flex;
justify-content: space-between;
align-items: center;
background-color: #111; /* Slightly lighter black for header */
padding: 10px 20px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
header .logo img {
width: 90px;
height: auto;
padding: -20px; /* Adjust as needed */
margin: -20px;
}
header .logo :hover{
filter: hue-rotate(90deg) saturate(2);
transform: scale(1.1);
}
nav a {
margin-left: 20px;
color: #28a745;
text-decoration: none;
font-size: 16px;
}
header .para {
overflow: hidden;
white-space: nowrap;
align-items: center;
width: 50%;
background:#111;
border: #111;
}
marquee {
display: inline-block;
}
main {
max-width: 1100px;
margin: 20px auto;
padding: 20px;
background-color: #111;
border-radius: 5px;
box-shadow: 0 2px 5px #ffffff1a;
}
.converter-section {
text-align: center;
}
.converter-section h2 {
color: #28a745;
font-size: 32px;
margin-bottom: 20px;
}
.input-container {
display: flex;
justify-content: center;
margin-bottom: 20px;
}
.input-container input {
width: 400px;
padding: 10px;
border: 1px solid #555; /* Dark grey border */
border-radius: 5px;
margin-right: 10px;
background-color: #222; /* Darker input background */
color: #fff;
}
.input-container button {
padding: 10px 20px;
background-color: #28a745;
color: #fff;
border: none;
border-radius: 5px;
cursor: pointer;
}
.input-container button:hover {
background-color: #218838;
}
.instructions, .features {
text-align: left;
margin: 20px 0;
}
.instructions h3, .features h3 {
font-size: 20px;
margin-bottom: 10px;
}
.instructions ol, .features ul {
list-style: none;
padding-left: 20px;
color: #ccc; /* Light grey text for instructions and features */
}
.instructions ol li, .features ul li {
margin-bottom: 10px;
position: relative;
}
.instructions ol li:before, .features ul li:before {
content: "•";
color: #28a745;
font-size: 20px;
margin-right: 10px;
}
.converter-info {
margin-top: 30px;
}
.converter-info h3 {
font-size: 24px;
color: #28a745;
margin-bottom: 10px;
}
.converter-info p {
margin-bottom: 10px;
font-size: 16px;
color: #ddd; /* Light grey text for paragraphs */
}
footer {
text-align: center;
padding: 20px;
background-color: #111;
margin-top: 30px;
border-top: 1px solid #555;
}
footer p {
color: #bbb; /* Lighter grey for footer text */
font-size: 14px;
}
footer p a {
color: #28a745;
text-decoration: none;
}