-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
72 lines (63 loc) · 1.41 KB
/
styles.css
File metadata and controls
72 lines (63 loc) · 1.41 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
/* Reset body margin and padding */
body {
margin: 0;
padding: 0 20%;
font-family: "Roboto Light", monospace;
height: 200vh; /* Ensures enough scrolling space */
overflow-x: hidden;
}
/* Background image with slow scroll effect */
.background {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: url('images/background_flat.jpg'); /* Replace with your image path */
background-size: cover;
background-attachment: fixed;
background-position: center;
transform: translateZ(0); /* Helps ensure smooth rendering on some devices */
}
/* Content section */
.content {
position: relative;
z-index: 1; /* Ensures content is above the background */
padding: 50px;
/* background: rgba(255, 255, 255, 0.1); /* Slightly transparent background for readability */
}
.hello-page {
padding: 100px;
}
.wip-banner {
text-align: center;
font-size: 3rem;
color: #fff;
}
.content h1 {
text-align: center;
font-size: 5rem;
color: #fff;
}
.subcentertitle {
text-align: center;
font-size: 3rem;
color: #aaa;
}
.content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
text-align: left;
color: #bbb;
}
.content li {
font-size: 1.5rem;
line-height: 1.4;
color: #aaa;
margin-bottom: 10px;
}
.carousel-caption {
background: rgba(0, 0, 0, 0.5);
padding: 10px;
border-radius: 5px;
}