-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
81 lines (71 loc) · 1.2 KB
/
styles.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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
}
header {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 80px;
text-align: center;
padding: 20px 0;
background-color: #4CAF50;
color: white;
display: flex;
}
header h1{
margin-left:10px;
}
.logo-container {
display: flex;
margin-left: 0px;
}
.logo-container img {
width: 50px;
height: 50px;
margin-left: 10px;
}
main {
padding-top: 120px;
width: 80%;
margin: 0 auto;
}
section {
padding-top: 120px;
margin-bottom: 30px;
padding: 20px;
background-color: #fff;
border-radius: 5px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.download img {
display: block;
margin: 0 auto;
max-width: 80%;
}
#downloadLink {
display: block;
width: 200px;
padding: 10px;
margin: 20px auto 0;
text-align: center;
background-color: #4CAF50;
color: white;
text-decoration: none;
border-radius: 5px;
}
#downloadLink:hover {
background-color: #45a049;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #ddd;
}