forked from amrit03b/TravelTales
-
Notifications
You must be signed in to change notification settings - Fork 0
/
read.css
119 lines (93 loc) · 1.96 KB
/
read.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
/* body */
body{
background-color: #ffcdfd;
}
/* Style for the journal card */
.card {
border: 1px solid #ccc;
border-radius: 8px;
margin: 10px;
padding: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
background-color: #fff;
width: 50%;
background-color: #FFC0CB;
}
.card img {
max-width: 100%;
border-radius: 8px 8px 0 0;
}
.card h1 {
font-size: 24px;
margin-top: 10px;
color: #333;
}
.card p {
font-size: 16px;
color: #666;
margin-top: 10px;
}
.search-container {
text-align: center;
margin: 20px;
}
#search-input {
padding: 5px;
width: 300px;
border: 1px solid #ccc;
}
.search-container:hover #search-input{
width:350px;
}
.search-container #search-input{
width: 0;
outline:none;
border: none;
font-weight: 500;
transition: 0.8s;
background: transparent;
}
button{
border-radius: 20px;
}
.fa{
color: rgb(178, 49, 243);
}
/* Scrollbar */
::-webkit-scrollbar {
width: 8px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background: #888;
border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
background: #555;
}
.navbar {
background-color: #C71585; /* Pink background color for the navbar */
}
.pink-bg {
background-color: #FFC0CB; /* Pink background color for the offcanvas body */
}
.pink-text {
color: #C71585; /* Pink color for the navbar brand text */
}
.nav-link {
font-size: 18px; /* Custom font size */
color: rgb(255, 255, 255); /* Custom link color */
margin-right: 15px; /* Custom margin between the nav items */
transition: all 0.3s; /* Smooth transition for size and color changes */
}
.nav-link:hover {
font-size: 20px; /* Slightly bigger font size on hover */
color: #FF69B4; /* Lighter pink color on hover */
}
.nav-link:active {
font-size: 20px; /* Slightly bigger font size on click */
color: #C71585; /* Darker pink color on click */
}