-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
84 lines (69 loc) · 1.04 KB
/
style.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #1a1a1a;
color: #ffffff;
}
header {
background-color: #000000;
padding: 20px;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
}
ul {
list-style: none;
display: flex;
}
ul li {
margin: 0 15px;
}
a {
text-decoration: none;
color: #ffffff;
font-weight: bold;
}
.button {
background-color: #4CAF50;
color: white;
padding: 10px 15px;
border-radius: 5px;
}
.hero {
text-align: center;
padding: 50px 20px;
}
.hero h1 {
font-size: 2.5rem;
}
.hero p {
font-size: 1.2rem;
margin: 20px 0;
}
.preview img {
max-width: 100%;
height: auto;
}
.features {
display: flex;
justify-content: space-around;
padding: 40px 20px;
}
.feature {
text-align: center;
max-width: 200px;
}
.feature h3 {
margin: 15px 0;
}
footer {
text-align: center;
padding: 20px;
background-color: #000000;
}