-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
53 lines (47 loc) · 859 Bytes
/
index.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
* {
font-family: Philosopher, Arial, sans-serif;
}
body {
padding: 0;
margin: 0;
background-color: #222;
overflow: hidden;
-webkit-user-select: none;
-moz-user-select: none;
-o-user-select: none;
-ms-user-select: none;
user-select: none;
}
.gold-berry-main {
position: absolute;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
top: 30px;
box-sizing: border-box;
min-width: 300px;
left: 50%;
transform: translate(-50%, 0);
padding: 15px;
color: #eee;
text-align: center;
font-size: 13px;
background-color: rgba(0, 0, 0, 0.5);
}
.gold-berry-logo {
width: 100%;
max-width: 500px;
}
.gold-berry-h1 {
font-size: 1rem;
font-weight: 400;
}
@media (min-width: 992px) {
.gold-berry-h1 {
font-size: 1.5rem;
}
.gold-berry-content {
font-size: 1rem;
}
}