-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhomepage.css
More file actions
108 lines (89 loc) · 1.51 KB
/
homepage.css
File metadata and controls
108 lines (89 loc) · 1.51 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
body {
font-family: sans-serif;
margin: 0;
padding: 0;
background-color: #f8f9fa;
}
header {
background-color: #e3f2fd;
padding: 20px 0;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
flex-grow: 1;
}
.logo h1 {
margin: 0;
font-size: 4em;
color: #333;
}
.logo p {
font-size: 0.8em;
margin-top: 5px;
color: #555;
}
nav ul {
list-style: none;
margin: 0.5;
padding: 0.5;
display: flex;
}
nav li {
margin-right: 20px;
}
nav a {
text-decoration: none;
color: #333;
}
.welcome {
padding: 80px 0;
text-align: center;
}
.welcome h2 {
font-size: 3em;
margin-bottom: 20px;
color: #333;
}
.welcome p {
font-size: 1.4em;
line-height: 1.5;
margin-bottom: 20px;
color: #555;
}
.btn {
background-color: #007bff;
border: none;
color: white;
padding: 29px 30px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin-top: 20px;
cursor: pointer;
}
.btn:hover {
background-color: #0069d9;
}
footer {
background-color: #212529;
padding: 30px 0;
text-align: center;
}
footer p {
margin-bottom: 40px;
color: #fff;
}
.social-links {
display: flex;
justify-content: center;
}
.social-links a {
margin: 0 10px;
color: #fff;
}
.social-links a:hover {
color: #ccc;
}