-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
103 lines (100 loc) · 2.53 KB
/
styles.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
.btn-primary{
background-color: #642047 !important;
border-color: #642047 !important;;
}
.btn-outline-primary{
color:#642047 !important;
}
.btn-outline-primary:hover{
background-color:#642047 !important;
color: white !important;
}
.btnn{
border-color: #642047 !important;
}
.btn-search{
border-color: #642047 !important;
color:#642047 !important;
border-radius: 20px;
border-width: 1.5px;
}
.btn-search:hover{
background-color: #642047;
color:white !important;
}
.navbar {
background-color: #c9c5b9 !important; /* Force transparency */
color:#6e6868 !important;
}
.icon svg path{
fill:#642047;
}
.icon svg path:hover{
fill:rgb(93, 90, 90);
transition: 0.25s;
}
.navbar-brand{
color:#6e6868 !important;
}
/* Hide text on larger screens */
.text-sm {
display: none;
}
.hidden-profile{
display: none;
}
.main-section {
background-image: url('https://img.freepik.com/free-photo/decorative-dreamy-arrangement-with-dried-flowers_23-2151363325.jpg?t=st=1730186696~exp=1730190296~hmac=fc05dc9fc6d557dc37a09a716dd010776c780c216633d85bdb130b9a9e5ab617&w=1800');
background-size: cover; /* Ensures the image covers the container fully */
background-position: center; /* Centers the image in the viewport */
background-repeat: no-repeat; /* Prevents tiling of the image */
height: 100vh; /* Full viewport height */
width: 100vw; /* Full viewport width */
display: flex;
align-items: center;
justify-content: flex-end; /* Aligns all content to the right */
position: relative;
}
.main-content {
margin-bottom: 2%;
margin-left: auto; /* Pushes main-content to the right */
padding: 20px;
/* background-color: aqua; */
width: fit-content; /* Adjusts width based on content */
}
/* Styling for the welcome text and buttons */
.main-content h1 {
font-size: 7.5rem;
font-weight: bold;
margin-bottom: 10px;
color:#642047!important;
}
.main-content h2{
color:#6e6868!important;
}
p {
font-size: 1.2rem;
margin-bottom: 20px;
}
.button-group .btn {
padding: 12px 24px;
font-size: 1.2rem;
border-radius: 30px;
}
/* Show text and hide icon on small screens */
@media (max-width: 992px) {
.hidden-profile{
display: block;
}
.profile{
display:none;
}
}
@media (max-width:992px){
.main-content h1 {
font-size: 5rem;
font-weight: bold;
margin-bottom: 10px;
color:#642047!important;
}
}