-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
executable file
·73 lines (62 loc) · 1001 Bytes
/
main.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
html, body {
margin: 0;
background: lightgrey;
height: 100%;
font-family: 'Noto Sans', sans-serif;
}
section {
height: auto;
}
section:first-child {
width: 100%;
height: 100%;
background-image: url('pics/field.jpg');
background-size: cover;
background-position: center center;
box-shadow: 8px 0 20px #000;
min-height: 500px;
}
section:first-child h2 {
color: #000;
text-shadow: 1px 1px 2px yellow;
}
section#about {
height: 750px;
}
section#about h2 {
color: #000;
}
section#contact {
background-color: #000;
padding: 10%;
}
h1 {
padding: 15% 10% 0 10%;
margin: 0;
text-align: center;
font-size: 3em;
color: #fff;
text-shadow: 2px 2px 8px #000;
}
h2 {
padding: 5% 0;
margin: 0;
font-size: 2em;
text-align: center;
color: #fff;
}
p {
margin: 30px 10%;
}
img#futsal {
display: inline-block;
height: 450px;
padding: 0 10%;
float: left;
border-radius: 20px;
}
img.social {
width: 50px;
padding: 15px;
align: center;
}