-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle2.css
More file actions
90 lines (78 loc) · 1.69 KB
/
Copy pathstyle2.css
File metadata and controls
90 lines (78 loc) · 1.69 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
body, html {
height: 100%;
font-family: 'Arial', sans-serif;
margin: 0; /* remove default margin */
/* background-image: url("water.gif");
background-repeat: repeat;
background-size: auto; */ /* or cover/contain if you don’t want strict tiling */
background-image: none;
}
body::before {
content: "";
position: fixed; /* so it stays in place even if page scrolls */
top: 0;
left: 0;
width: 100%;
height: 100%;
background: url("water.gif") repeat;
opacity: 0.2; /* adjust transparency as needed */
pointer-events: none; /* let clicks pass through to content */
z-index: -1; /* sit behind the main content */
}
.icon-banner {
max-width: 1100px;
margin: auto; /* This centers the banner horizontally */
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 0;
}
.icon-banner img {
width: 50px;
height: 50px;
}
.container {
display: flex;
justify-content: center;
align-items: top;
}
#content {
padding: 30px;
max-width: 1100px;
margin: auto;
}
footer {
background: #333;
color: #fff;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}
.main-flex-container {
display: flex;
align-items: flex-start;
justify-content: center;
}
#sticky-nav {
width: 200px;
position: sticky;
top: 200px;
}
.nav-content {
padding: 1em;
text-align: left;
}
#sticky-nav a {
display: block;
margin-bottom: 1em;
color: #333;
text-decoration: none;
}
#sticky-nav a:hover {
text-decoration: underline;
}
.container {
padding-left: 20px; /* Adjust as needed */
}