-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
99 lines (89 loc) · 1.68 KB
/
style.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
.navbar-scrolled {
background-color: #f10000; /* Change to your desired color */
}
.navbar-light .navbar-nav .nav-link{
color: black;
font-size: 22px;
}
.navbar-light .navbar-brand{
color: black;
font-size: 30px;
}
header{
/* height:10vh;
min-height: 400px; */
background-size: cover;
}
/* /media Query/ */
@media only screen and (max-width: 600px) {
header {
background-position: 20% 33%; /* Corrected syntax */
}
}
/*-------------- code for loading screen */
.box{
background-color:black;
top: 0;
left: 0;
z-index: 9999;
height: 100%;
width: 100%;
position: fixed;
display: flex;
align-items: center;
justify-content: center;
transition: all 4s;
}
.spinner-grow{
height:3.50rem;
width: 3.50rem;
}
/* ----infinity corosaul */
.scroller {
overflow: hidden;
}
.scroller_inner {
display: flex;
animation: scroll 10s linear infinite; /* Adjust the duration as needed */
}
@keyframes scroll {
to {
transform: translateX(-100%);
}
}
/* -------style for scoller */
::-webkit-scrollbar{
width: 10px;
}
::-webkit-scrollbar-track{
background-color: #dddddd72;
border-radius: 5px;
}
::-webkit-scrollbar-thumb{
background-color: red;
}
.img-circle{
border-radius: 50%;
width:9.375rem;
height: 9.375rem;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: transparent;
}
.error{
color: red;
}