-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaboutstyle.css
More file actions
105 lines (87 loc) · 1.3 KB
/
aboutstyle.css
File metadata and controls
105 lines (87 loc) · 1.3 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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
color: #333;
}
header {
background-color: #007bff;
color: white;
padding: 20px 0;
text-align: center;
}
.logo h1 {
margin: 0;
font-size: 1.5rem;
}
.logo p {
font-style: italic;
margin: 10px 0 0;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin: 0 15px;
}
nav a {
color: white;
text-decoration: none;
font-weight: bold;
}
nav a:hover {
text-decoration: underline;
}
.welcome {
background: #f8f9fa;
padding: 50px 20px;
text-align: center;
}
.content h2 {
font-size: 2em;
margin-bottom: 20px;
}
.content p {
max-width: 600px;
margin: 0 auto 20px;
padding: 0 15px;
}
footer {
background-color: #343a40;
color: white;
text-align: center;
padding: 20px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer .social-links {
margin-top: 10px;
}
footer .social-links a {
color: white;
margin: 0 10px;
text-decoration: none;
}
footer .social-links a:hover {
text-decoration: underline;
}
#home1{
color: #343a40;
font-size: x-large;
text-decoration: underline;
}
@media (max-width: 768px) {
.logo h1 {
font-size: 2em;
}
.content h2 {
font-size: 1.8em;
}
.welcome {
padding: 30px 10px;
}
}