-
Notifications
You must be signed in to change notification settings - Fork 1
/
master.css
52 lines (52 loc) · 1.08 KB
/
master.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
html,
body {
font-family: Roboto, sans-serif;
background: url(https://rffanunes.github.io/cdn-buser/wp.jpg) center center;
background-repeat: no-repeat;
background-size: cover;
width: 100%;
height: 100%;
color: #fff;
text-shadow: 1px 0px 2px #000;
}
.box {
display: table;
width: 100%;
height: 100%;
}
.box .box-content {
display: table-cell;
text-align: center;
vertical-align: middle;
}
.box .box-content .bc-img {
margin-bottom: 80px;
}
.box .box-content .bc-text {
background-color: rgba(0, 0, 0, 0.3);
vertical-align: middle;
padding: 24px 0 32px;
}
.box .box-content .bc-text h1 {
font-weight: bold;
font-size: 48px;
}
.box .box-content .bc-text p {
font-size: 24px;
max-width: 630px;
margin-top: 24px;
display: inline-block;
}
@media (max-width: 768px) {
.box .box-content .bc-img {
margin-bottom: 40px;
width: 160px;
}
.box .box-content .bc-text h1 {
font-size: 30px;
}
.box .box-content .bc-text p {
font-size: 16px;
max-width: 600px;
}
}