-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmissingURI.css
More file actions
187 lines (164 loc) · 3.18 KB
/
missingURI.css
File metadata and controls
187 lines (164 loc) · 3.18 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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
/* Reset */
body, h1, p, a, div, header, footer, nav, ul, li {
margin: 0;
padding: 0;
box-sizing: border-box;
}
/* Background and layout */
body {
background: linear-gradient(145deg, #f5f5f5, #f5f5f5);
color: #333;
font-family: 'Poppins', sans-serif;
display: flex;
flex-direction: column;
min-height: 100vh;
}
/* Header ribbon */
.header-ribbon {
display: flex;
justify-content: space-between;
align-items: centre;
padding: 10px 20px;
background: #222;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
width: 100%;
position: sticky;
top: 0;
z-index: 10;
box-sizing: border-box;
overflow: hidden;
}
/* EC3 header logo */
.logo {
align-items: centre;
display: flex;
gap: 10px;
}
.logo img {
height: 40px;
width: auto;
transition: transform 0.3s;
}
.logo img:hover {
transform: scale(1.1);
}
.logo a {
color: #f7a11b;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
font-size: 20px;
}
.logo a:hover {
color: #e69518;
}
.logo a:visited {
color: #f7a11b !important;
}
/* Navigation menu */
.nav ul {
list-style: none;
display: flex;
gap: 15px;
margin: 0;
}
.nav ul li a {
color: #f7a11b;
text-decoration: none;
font-weight: bold;
transition: color 0.3s;
}
.nav ul li a:hover {
color: #e69518;
}
/* Main content box */
main.missing-uri {
flex: 1;
background: #ffffff;
padding: 40px 30px;
max-width: 900px;
border-radius: 15px;
margin: 40px auto;
text-align: centre;
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}
/* Title text */
main.missing-uri h1 {
font-size: 32px;
font-weight: bold;
color: #282828;
margin-bottom: 30px;
}
/* Informational paragraphs */
main.missing-uri p {
font-size: 16px;
color: #444;
margin-bottom: 25px;
line-height: 1.6;
}
/* GitHub button */
.github-link {
display: inline-block;
padding: 12px 28px;
background-color: #2D2D2D;
color: #ffffff;
text-decoration: none;
font-weight: bold;
border-radius: 8px;
font-size: 15px;
transition: background-color 0.3s ease;
}
.github-link:hover {
background-color: #111111;
}
/* Back link */
.back-link a {
display: inline-block;
margin-top: 20px;
font-size: 15px;
color: #333;
text-decoration: underline;
transition: color 0.3s ease;
}
.back-link a:hover {
color: #555;
}
/* Footer */
.footer {
text-align: centre;
margin-top: auto;
padding: 20px 0;
background: #111;
font-size: 0.9rem;
color: #ccc;
}
/* Social icons container */
.social-icons {
display: flex;
gap: 15px;
justify-content: centre;
margin-top: 15px;
}
/* Social icon links */
.social-icons a {
display: inline-block;
width: 40px;
height: 40px;
background-color: white;
border-radius: 50%;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
overflow: hidden;
text-align: centre;
line-height: 40px;
}
/* Social icon images */
.social-icons img {
width: 60%;
height: 60%;
object-fit: contain;
vertical-align: middle;
transition: transform 0.3s;
}
.social-icons img:hover {
transform: scale(1.2);
}