-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
180 lines (149 loc) · 2.96 KB
/
style.css
File metadata and controls
180 lines (149 loc) · 2.96 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
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
172
173
174
175
176
177
178
179
180
/* General Styles */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
min-height: 100vh;
background-color: #f8f8f8;
justify-content: space-between;
flex-direction: column;
}
.container {
display: flex;
justify-content: center;
background-color: #fff;
border-radius: 10px;
margin: 20px;
padding: 30px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
align-content: center;
align-items: center;
flex-direction: row;
}
#logo {
height: 60px;
width: fit-content;
}
.site-title {
text-shadow: 0 0 5px #000;
}
#jogle {
text-decoration: none;
color: white;
}
#jogle:hover {
color: #007bff;
}
.left {
flex: 1;
}
.right {
width: 30%;
text-align: center;
}
.circle {
width: 150px;
height: 150px;
border-radius: 50%;
overflow: hidden;
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
}
.circle img {
max-width: 100%;
height: 100%;
max-height: 100%;
object-fit: cover;
}
#titleAuthor h2 {
color: #007bff; /* Blue color for title */
margin-bottom: 10px; /* Increased margin */
}
#info {
margin-bottom: 30px; /* Increased margin */
}
#info h3 {
color: #000; /* Black color for information header */
font-weight: bold; /* Bold font weight for information header */
margin-bottom: 15px; /* Increased margin */
}
#moreInfoBtn {
display: inline-block; /* Ensures button displays correctly */
background-color: #007bff;
color: #fff;
padding: 12px 24px; /* Increased padding */
border-radius: 5px;
text-decoration: none;
}
#moreInfoBtn:hover {
background-color: #0056b3;
}
/* Header Styles */
.header {
background-color: #007bff;
color: #fff;
padding: 20px 0;
text-align: center;
}
.site-title {
font-size: 24px;
margin-bottom: 10px; /* Increased margin */
}
.slogan {
font-size: 16px;
margin-bottom: 20px; /* Increased margin */
text-shadow: 1px 1px 10px #000;
}
/* Footer Styles */
.footer {
background-color: #343a40;
color: #fff;
text-align: center;
padding: 20px 0;
}
.social-media {
margin-top: 20px;
margin-bottom: 20px; /* Increased margin */
}
.social-icon {
margin-right: 15px; /* Increased margin */
}
.social-icon i {
font-size: 24px;
color: #fff;
}
.social-icon i:hover {
color: #007bff;
}
.contact-link {
color: #fff;
text-decoration: none;
display: inline-block;
margin-top: 10px;
border: 1px solid #fff;
padding: 8px 20px;
border-radius: 5px;
}
.contact-link:hover {
background-color: #fff;
color: #343a40;
}
.datetime {
font-size: 16px;
font-weight: bold;
color: #fff;
margin-right: 20px; /* Adjust as needed */
text-shadow: 2px 1px 4px black;
}
/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
.container {
flex-direction: column;
}
.right {
width: 100%;
}
}