-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.css
More file actions
112 lines (93 loc) · 1.47 KB
/
index.css
File metadata and controls
112 lines (93 loc) · 1.47 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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
line-height: 1.3;
color: #333;
}
header {
background-color: #007bff;
color: white;
padding: 30px 10px;
text-align: center;
}
.logo h1 {
margin: 0;
font-size: 2.5em;
}
.logo p {
font-style: italic;
margin: 10px 0 0;
}
.welcome {
background: #f8f9fa;
padding: 50px 20px;
text-align: center;
}
.content h2 {
font-size: 3em;
margin-bottom: 20px;
}
.content p {
max-width: 600px;
margin: 0 auto 10px;
padding: 0 15px;
font-size: 1.4em;
}
.button-container {
margin-top: 20px;
}
.btn-primary {
display: inline-block;
padding: 20px 30px;
background-color: #288ea7;
color: white;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.btn-primary:hover {
background-color: #3eb8d6;
}
footer {
background-color: #343a40;
color: white;
text-align: center;
padding: 16.3px 0;
position: relative;
bottom: 0;
width: 100%;
}
footer nav ul {
list-style: none;
padding: 0;
}
footer nav ul li {
display: inline;
margin: 0 15px;
}
footer .social-links {
margin-top: 10px;
}
footer .social-links a {
color: white;
margin: 10 30px;
text-decoration: none;
}
footer .social-links a:hover {
text-decoration: underline;
}
footer a#about {
color: white;
}
@media (max-width: 768px) {
.logo h1 {
font-size: 2em;
}
.content h2 {
font-size: 1.8em;
}
.btn-primary {
padding: 8px 16px;
}
}