-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.css
87 lines (75 loc) · 1.51 KB
/
about.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
font-family: 'Roboto', sans-serif;
margin: 0;
padding: 0;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
}
/* Rolling Header Styles */
header {
background-color: #ff69b4;
color: white;
padding: 10px 0;
text-align: center;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
nav ul {
list-style-type: none;
padding: 0;
margin: 0;
display: flex;
justify-content: center;
}
nav ul li {
margin: 0 15px;
}
nav ul li a {
color: white;
text-decoration: none;
font-size: 1.2em;
transition: color 0.3s ease;
}
nav ul li a:hover {
color: #333;
}
section {
padding: 50px 20px;
text-align: center;
}
#about-us, #about-website {
background-color: #fff;
}
.about-content, .about-website-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 20px;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-content img {
width: 80%;
max-width: 300px;
height: auto;
border-radius: 50%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.about-text, .about-website-content {
max-width: 600px;
text-align: left;
font-size: 1.2em;
}
footer {
background-color: #ff69b4;
color: white;
text-align: center;
padding: 10px 0;
position: fixed;
width: 100%;
bottom: 0;
}