-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (105 loc) · 1.93 KB
/
style.css
File metadata and controls
121 lines (105 loc) · 1.93 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
/* Reset and base styles */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', sans-serif;
background: linear-gradient(to bottom, #0b0b0b, #121212);
color: #f0f0f0;
line-height: 1.6;
padding: 40px 20px;
max-width: 960px;
margin: auto;
}
/* Header */
header {
text-align: center;
margin-bottom: 50px;
}
h1 {
font-size: 2.75rem;
color: #800000;
margin-bottom: 10px;
}
.tagline {
font-size: 1.2rem;
color: #bbb;
}
/* Section headings */
h2 {
font-size: 1.6rem;
margin: 40px 0 20px;
color: #f0f0f0;
border-bottom: 2px solid #800000;
padding-bottom: 5px;
}
/* Tool sections */
section.tool {
margin-bottom: 50px;
}
/* Inputs */
input[type="file"],
input[type="text"],
input[type="datetime-local"] {
display: block;
margin: 10px 0 20px;
padding: 14px;
font-size: 16px;
width: 100%;
max-width: 640px;
border: 1px solid #800000;
border-radius: 6px;
background-color: #1a1a1a;
color: #f0f0f0;
transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
input[type="text"]::placeholder {
color: #888;
}
input:focus {
border-color: #a00000;
box-shadow: 0 0 5px rgba(160, 0, 0, 0.5);
outline: none;
}
/* Buttons */
button {
padding: 14px 28px;
font-size: 16px;
background-color: #800000;
color: white;
border: none;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.2s ease, transform 0.1s ease;
}
button:hover {
background-color: #a00000;
transform: translateY(-1px);
}
/* Base link style */
a {
color: #b30404; /* Maroon */
text-decoration: none;
font-weight: 500;
transition: color 0.2s ease, text-decoration 0.2s ease;
}
/* Hover and focus states */
a:hover,
a:focus {
color: #e60303; /* Brighter maroon */
text-decoration: underline;
}
/* Active state */
a:active {
color: #f60202; /* Even brighter on click */
}
footer a,
.about a {
color: #b30404;
}
footer a:hover,
.about a:hover {
color: #e60303;
}