-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (48 loc) · 1.08 KB
/
style.css
File metadata and controls
54 lines (48 loc) · 1.08 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
.open-sans-banana, body, h1, h2, h3, h4, h5, h6 {
font-family: "Open Sans", sans-serif;
font-optical-sizing: auto;
font-weight: 500;
font-style: normal;
font-variation-settings: "wdth" 100;
}
::selection {
background-color: #5322dbfd;
color: #ffff;
}
body {
background-color: black;
color: #ffff;
}
header {
display: flex;
align-items: center;
padding: 10px 20px;
background-color: grey;
color: #ffff;
/* Add these styles */
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 10; /* Ensure the header stays on top */
text-indent: 10px;
}
header img {
width: 100px;
height: 100px;
object-fit: contain; /* Scale the image to fit within the dimensions */
}
#right-box {
position: fixed;
top: 130px; /* Adjust this value to match the height of your header */
right: 0;
width: 200px;
height: 50vh;
border-width: 10px;
border-color: #db2241fd;
border-style: solid;
background-color: #5322dbfd;
color: #ffff;
padding: 20px;
}