-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
53 lines (43 loc) · 799 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
body {
font-family: 'Righteous', cursive;
font-size: 30px;
line-height: 1.25;
background-color: white;
color: black;
margin: 0 auto;
}
.text {
border: 100px solid black;
padding: 40px;
background-color: white;
position: relative;
}
h1 {
font-size: 60px;
margin: 0;
}
.background {
/* margin-top: -1800px; */
min-height: 100%;
min-width: 1024px;
width: 100%;
height: auto;
position: fixed;
bottom: 0;
left: 0;
background-size: cover;
background-position: center;
mix-blend-mode: screen;
pointer-events: none;
}
@media only screen and (max-width: 600px) {
body {
font-size: 14px;
}
.text {
border: 50px solid black;
}
h1 {
font-size: 30px;
}
}