-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.css
More file actions
77 lines (65 loc) · 1.21 KB
/
main.css
File metadata and controls
77 lines (65 loc) · 1.21 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
body {
font-family: 'Ubuntu', sans-serif;
margin: 0;
padding: 0;
background-color: #f8f8f8;
color: #333;
}
h1, h2, h3, h4, h5 {
color: #2c3e50;
}
.center_content_hv {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
}
.center_content_h {
text-align: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.subtext {
color: #95a5a6;
}
.super_big_centered {
font-size: 10em;
color: #e74c3c;
}
.banner {
background-image: url('assets/main_banner.png');
background-size: cover;
background-position: center;
text-align: center;
height: 200px;
}
.logo {
max-width: 100%;
height: auto;
display: inline-block;
margin: 20px 0;
}
.section {
width: 80%;
margin: 0 auto;
padding: 20px;
background-color: #ecf0f1;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
color: #2c3e50;
}
p {
line-height: 1.6;
margin-bottom: 10px;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}