-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyle5.css
89 lines (84 loc) · 1.77 KB
/
style5.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
@import url('https://fonts.googleapis.com/css2?family=Edu+SA+Beginner:wght@500&family=Handjet:wght@300&family=Julee&family=Manrope:wght@300&family=Montserrat:wght@200&family=Playfair+Display&family=Poppins:wght@100&family=Raleway:wght@200&family=Roboto:wght@100&family=Space+Grotesk:wght@300&family=Ubuntu&family=Victor+Mono:wght@100&display=swap');
*{
margin: 0;
padding: 0;
}
.above-section{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
.content{
margin-top: 30px;
}
.content h3{
font-family: 'Times New Roman', Times, serif;
font-weight: bolder;
}
.content p{
color: rgb(255, 136, 0);
}
.back-logo{
margin-top: 12px;
}
.back-logo img{
height: 100px;
width: 135px;
}
.navbar {
height: 150px;
width: 100vw;
color: white;
background-color: rgb(54, 14, 133);
margin-top: 12px;
}
.navbar ul{
display: flex;
justify-content: space-around;
flex-wrap: wrap;
}
a{
/* padding-right: 20px; */
margin-top: 44px;
text-decoration: none;
color: whitesmoke;
position: relative;
font-size: 16px;
font-family: 'Poppins', sans-serif;
letter-spacing: 0.5px;
font-weight: 700;
}
a:after{
content: "";
position: absolute;
height: 3px;
background-color: orange;
width: 0;
left: 0;
bottom: 0;
transition: 0.5s;
}
a:hover{
color: white;
}
a:hover:after{
width: 100%;
}
.transparentback {
background-color: rgba(255, 255, 255, 0.6); /* 60% opacity white */
}
.marquee-container {
overflow: hidden;
white-space: nowrap;
}
.marquee-content {
animation: marqueeAnimation 2s linear infinite;
}
@keyframes marqueeAnimation {
from {
transform: translateX(100%);
}
to {
transform: translateX(-100%);
}
}