-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
93 lines (86 loc) · 1.36 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
85
86
87
88
89
90
91
92
93
body,
html {
margin: 0;
height: 100%;
font-family: 'Roboto, Condensed', sans-serif;
line-height: 180%;
text-align: center;
color: #444;
}
.image1 {
background-image: url(images/braden.jpg);
min-height: 100%;
}
.image2 {
background-image: url(images/leafar.jpg);
min-height: 60%;
}
.image3 {
background-image: url(images/nicolas.jpg);
min-height: 40%;
}
.image4 {
background-image: url(images/rafael.jpg);
min-height: 100%;
}
.image1,
.image2,
.image3,
.image4 {
position: relative;
opacity: 0.75;
background-position: center;
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
.demonstration {
color: #fbfbfb;
font-size: 550%;
top: 50%;
}
.demonstration2 {
color: #c73256;
font-size: 450%;
top: 57%;
}
.demonstration3 {
color: #d1345b;
font-size: 350%;
top: 64%;
}
.demonstration4 {
color: #fff;
font-size: 250%;
top: 45%;
}
.demonstration, .demonstration2,
.demonstration3,
.demonstration4 {
position: absolute;
width: 100%;
text-transform: uppercase;
letter-spacing: 8px;
text-shadow: 0 0 10px #000;
}
section {
padding: 50px ;
}
.Dark {
background-color: #444;
color: #fff;
}
@media (max-width: 768px) {
.demonstration {
font-size: 300%;
}
.demonstration2 {
font-size: 250%;
}
.demonstration3 {
font-size: 200%;
}
}
p{
text-align: justify;
}