-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaboutstyle.css
More file actions
70 lines (60 loc) · 1.03 KB
/
aboutstyle.css
File metadata and controls
70 lines (60 loc) · 1.03 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
body {
font-family: 'Open Sans', sans-serif;
margin: 0;
padding: 0;
line-height: 1.6;
background-color: #f8f9fa;
}
header {
background-color: #e3f2fd;
padding: 2rem;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 2px solid #b3d9ff;
}
nav ul {
list-style: none;
margin: 0;
padding: 0.5;
display: flex;
gap: 3rem;
}
nav ul li a, nav .btn {
text-decoration: none;
color: #333;
}
.welcome {
display: flex;
justify-content: space-between;
padding: 3.9rem;
background-color: #e9ecef;
}
.welcome .content {
max-width: 100%;
}
.welcome .content h2 {
font-size: 3.1rem;
margin-bottom: 4rem;
color: #333;
}
.welcome .content button {
margin-top: 2rem;
padding: 1rem 2rem;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
}
footer {
padding: 2.5rem;
background-color: #212529;
color: #fff;
text-align: center;
}
footer .social-links a {
color: #fff;
text-decoration: none;
margin: 0 10px;
font-size: 1rem;
}