-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
74 lines (62 loc) · 1.55 KB
/
style.css
File metadata and controls
74 lines (62 loc) · 1.55 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
@import @import url('https://fonts.googleapis.com/css2?family=Lobster&family=Macondo&family=Montserrat:wght@200&display=swap');
html {
font-family: 'Lobster', cursive;
}
header {
color: black;
background-color: rgb(200,200,200);
width: 100%;
position: fixed;
display: block;
top: 0;
font-size: 30px;
text-align : right;
}
#header {
padding: 10px 10px; /* Some padding */
color: black;
text-align: center; /* Centered text */
font-size: 50px; /* Big font size */
font-weight: bold;
position: fixed; /* Fixed position - sit on top of the page */
top: 0;
width: 100%; /* Full width */
transition: 0.5s; /* Add a transition effect (when scrolling - and font size is decreased) */
}
#vertical-menu {
width: 50%;
left:0;
/* Set a width if you like */
}
.vertical-menu a {
background-color: #eee; /* Grey background color */
color: black; /* Black text color */
display: flex; /* Make the links appear below each other */
padding: 12px; /* Add some padding */
text-decoration: none; /* Remove underline from links */
}
.vertical-menu a:hover {
background-color: #ccc; /* Dark grey background on mouse-over */
}
.vertical-menu a.active {
background-color: #04AA6D; /* Add a green color to the "active/current" link */
color: white;
}
div {
background-color : rgb(200,200,200);
position :fixed;
top:0px;
left:0px;
}
body {
background-color: rgb(200,200,200);;
}
section {
background-color : rgb(200,200,200);
width : 70%;
position: relative;
display: block;
top:32px;
right:0;
float: right;
}