-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
95 lines (73 loc) · 2.11 KB
/
style.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
body, html {
margin: 0;
padding: 0;
width: 100vw;
height: 100vh;
overflow: hidden;
min-height: 100vh; /* Ensure the full viewport height */
font-family: Arial, sans-serif;
}
canvas {
position: fixed; /* Make it a background */
top: 0;
left: 0;
z-index: 1; /* Behind the content */
}
.content, header, footer {
position: relative;
z-index: 2; /* Ensure these are above the canvas */
}
header {
display: flex;
justify-content: space-between; /* Aligns content to each side */
align-items: center; /* Vertically centers content in the header */
padding: 0px 40px; /* Increase padding to move away from the edge */
margin-top: 0; /* Remove any additional top margin if present */
/* Other header styles */
}
.header-content h1 {
font-size: 55px; /* Increase size for bigger header */
margin-bottom: 0px; /* Reduced margin to decrease gap */
font-family: 'Times New Roman', serif; /* Serif font for the header title */
/* Other h1 styles */
}
.header-content p {
font-size: 24px; /* Increase size for subtitle */
font-variant: small-caps; /* Small caps for subtitle */
/* Other p styles */
}
nav {
text-align: right;
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0; /* Reset default margin */
display: flex;
justify-content: flex-end; /* Align navigation items to the right */
}
nav ul li {
display: inline-block;
margin-left: 25px; /* Spacing between navigation items */
}
nav a {
text-decoration: none; /* Removes underline from links */
color: grey; /* Default color */
font-variant: small-caps; /* Small caps font */
font-size: 25px; /* Increase font size for bigger navigation links */
}
nav a:hover {
color: black; /* Color on hover */
}
footer {
text-align: right; /* Align text to the right */
padding: 0px 20px; /* Padding for spacing */
position: fixed; /* Fixed position */
bottom: 0;
right: 0;
width: auto; /* Adjust width as needed */
background-color: transparent; /* Optional: Set a background color */
}
main {
padding: 15px;
}