-
Notifications
You must be signed in to change notification settings - Fork 0
/
stylesheet.css
137 lines (122 loc) · 2.21 KB
/
stylesheet.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
@charset "utf-8";
/* CSS Document */
@import url("https://fonts.googleapis.com/css2?family=Fjalla+One&family=Manrope:wght@350&display=swap");
@import url("https://fonts.google.com/specimen/Kanit");
#nav-bar {
width: 100%;
height: 100px;
background: rgb(255, 153, 0);
margin: 0;
list-style-type: none;
position: fixed; /* Set the navbar to fixed position */
top: 0; /* Position the navbar at the top of the page */
width: 100%; /* Full width */
}
#nav-menu {
padding: 0;
box-sizing: border-box;
display: flex;
}
.menu-item {
list-style-type: none;
display: inline;
}
.button {
align-self: center;
text-align: center;
margin-right: -5px;
margin-top: -18px;
padding: 15px;
font-family: "Manrope", sans-serif;
font-size: 15px;
background-color: transparent;
border: none;
outline: none;
cursor: pointer;
color: black;
font-size: 20px;
font-weight: 900;
opacity: 1;
border-radius: 2px;
}
.button:hover {
background-color: black;
color: rgb(255, 153, 0);
border-radius: 5px;
transition-duration: 0.4s;
}
.body {
background-color: #333952;
margin: 0;
padding: 0;
list-style-type: none;
}
#nav-list {
list-style-type: none;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 20px;
padding-right: 15px;
float: right;
align-self: middle;
}
* {
box-sizing: border-box;
}
body {
font-family: Verdana, sans-serif;
}
.mySlides {
display: none;
}
img {
vertical-align: middle;
}
/* Slideshow container */
.slideshow-container {
display: block;
position: relative;
margin-top: 100px;
}
/* The dots/bullets/indicators */
.dot {
height: 15px;
width: 15px;
margin: 0 2px;
background-color: #bbb;
border-radius: 50%;
display: inline-block;
transition: background-color 0.6s ease;
}
.image-slide {
object-fit: contain;
height: 90vh;
}
.active {
background-color: #717171;
}
/* Fading animation */
.fade {
position: static;
-webkit-animation-name: fade;
-webkit-animation-duration: 3s;
animation-name: fade;
animation-duration: 3s;
}
@-webkit-keyframes fade {
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}
@keyframes fade {
from {
opacity: 0.4;
}
to {
opacity: 1;
}
}