-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbstyle.css
171 lines (147 loc) · 3.51 KB
/
bstyle.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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #bbc9e9; /* Light gray background */
color: #482a2a; /* Dark text color */
}
header {
background-color: #bbc9e9;
color: #fff;
padding: 10px 0;
}
.user-actions {
position: absolute;
top: 10px;
right: 10px;
}
.user-actions {
position: absolute;
top: 10px;
right: 10px;
margin-top: 20px;
}
.user-actions a {
display: inline-block;
background-color: #23527c; /* Blue background color */
color: #fff; /* White text color */
padding: 10px 20px;
border-radius: 20px; /* Add round corners */
text-decoration: none;
font-weight: bold;
margin-left: 10px;
transition: background-color 0.3s, color 0.3s;
}
.user-actions a:hover {
background-color: #ff6600; /* Slightly darker blue on hover */
}
button#create-blog-button {
background-color: #ff6600; /* Orange background color */
color: #fff; /* White text color */
padding: 10px 20px;
border: none;
border-radius: 20px; /* Add round corners */
font-weight: bold;
cursor: pointer; /* Show a pointer cursor on hover */
transition: background-color 0.3s, color 0.3s;
}
button#create-blog-button:hover {
background-color: #ff3300; /* Slightly darker orange on hover */
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
text-align: center; /* Align titles to the left */
margin-bottom: 10px;
}
nav ul li {
display: inline;
margin-right: 70px;
font-size: x-large;
}
nav ul li a {
text-decoration: none;
color: #626d77; /* Subdued blue text color */
font-weight: bold;
transition: color 0.3s;
}
nav ul li a:hover {
color: #ff6600; /* Slightly darker blue on hover */
}
.logo img {
width: 50px;
height: 50px;
margin-left: 70px;
margin-top: 30px;
}
/* Hero section styles */
.blog {
text-align: center;
padding: 20px;
}
.blog h1 {
font-size: 32px;
margin: 20px 0;
color: #23527c; /* Blue text color */
}
.blog-post1,
.blog-post2,
.blog-post3,
.blog-post4 {
background-color: #fff;
padding: 20px;
margin: 20px 0;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.blog-post1,
.blog-post2,
.blog-post3 h2,
.blog-post4 h2 {
font-size: 24px;
margin: 10px 0;
color: #333; /* Dark text color */
}
.blog-post1,
.blog-post2,
.blog-post3 p,
.blog-post4 p {
font-size: 16px;
margin: 10px 0;
color: #333; /* Dark text color */
}
.bottom-box {
background-color: #f4f4f4; /* Light gray background for the bottom box */
color: #333; /* Dark text color */
padding: 20px;
display: flex;
justify-content: space-between;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
footer {
background-color: #f4f4f4; /* Light gray background for the bottom box */
color: #333; /* Dark text color */
padding: 20px;
text-align: center;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
.social-links {
margin: 0 auto;
}
.social-links h3 {
font-size: 20px;
margin-bottom: 10px;
color: #333; /* Dark text color for headings */
}
.social-links a {
font-size: 18px;
text-decoration: none;
color: #333; /* Dark text color */
transition: color 0.3s;
}
.social-links a:hover {
color: #ff6600; /* Blue text color on hover */
}