-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
87 lines (74 loc) · 1.41 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
82
83
84
85
86
87
html, body, .container, .content-overlay{
height: 100%;
width: 100%;
margin: 0;
padding: 0;
}
h1 {
font-family: 'Roboto', sans-serif;
font-weight: 900;
font-size: 10.5rem;
line-height: 8rem;
color: #FFFFFF;
//text-stroke-width: 10px;
text-shadow: 0px 0px 2px #000000;
}
h2 {
font-family: 'Roboto', sans-serif;
font-size: 1.6rem;
color: #FFF;
}
p {
font-family: 'Roboto', sans-serif;
color: #FFF;
}
.content-overlay {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
text-align: center;
}
.content {
display: inline-block;
position: relative;
top: 50%;
transform: translateY(-50%);
}
.content-overlay .usage-box {
width: 80%;
border: 3px solid #01E2FE;
border-radius: 25px;
background-color: #333333;
position: relative;
margin-top: 3rem;
margin-left: auto;
margin-right: auto;
padding: 0px 20px 8px 20px;
text-align: left;
}
#credits {
position: absolute;
bottom: 0;
right: 15px;
}
#credits p {
font: 700 1.1rem "Helvetica Neue",Helvetica,Arial,sans-serif;
}
@media (max-width: 500px) {
.content-overlay {
padding-top: 15px;
}
.content {
display: block;
top: 0;
transform: translateY(0%);
}
#credits {
position: relative;
margin-top: 1.5rem;
bottom: auto;
right: auto;
}
}