-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
64 lines (63 loc) · 1.26 KB
/
style.css
File metadata and controls
64 lines (63 loc) · 1.26 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
nav {
position: fixed !important;
width: 100%;
}
.bg-blue {
background-color: #03346e;
}
.navbar-light .navbar-brand,
.navbar-light .nav-link {
color: #f8f9fa !important; /* Light text color for visibility on blue */
}
.navbar-light .nav-link:hover {
color: #e2e6ea !important; /* Slightly lighter color on hover */
}
.btn-outline-b {
color: blue;
background-color: rgb(255, 255, 255);
}
.btn-outline-b:hover {
background-color: #ffffff;
color: blue;
}
.btn-outline-blue {
color: black;
border-color: white;
border-radius: 10%;
}
.btn-outline-blue:hover {
background-color: #024caa;
color: white;
}
body {
background: linear-gradient(to right, #b0a695, #ebe3d5);
}
.container-lg {
height: 100%;
width: auto;
margin: 0 auto;
}
.carter-one-regular {
font-family: "Carter One", system-ui;
font-weight: 400;
font-style: normal;
}
.welcome {
font-family: "Carter One", system-ui;
font-weight: 400;
font-style: normal;
justify-content: center;
text-align: center;
align-items: center;
}
p {
font-family: "Carter One", sans-serif;
font-weight: 200;
font-style: normal;
margin-bottom: 20px;
color: black;
font-size: 20px;
}
.bg-col {
background-color: #e1d7c6;
}