-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathres_background.css
75 lines (69 loc) · 1.18 KB
/
res_background.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
* {
margin: 0;
padding: 0;
}
body {
font-family: sans-serif;
position: relative;
background: #000;
}
h1 {
font-size: 3.2rem;
color: #666;
position: absolute;
top: 10%;
left: 50%;
opacity: 0.3;
transform: translate(-50%, -50%);
}
.outer {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.inner {
position: relative;
}
.inner::before,
.inner::after {
pointer-events: none;
z-index: 1;
position: absolute;
display: block;
height: 2px;
width: 8px;
top: 50%;
background: #fff;
}
.inner::before {
right: 15.26px;
transform: translateY(-50%) rotate(-45deg);
}
.inner::after {
right: 20px;
transform: translateY(-50%) rotate(45deg);
}
h4 {
color: #FFFFFF;
font-style: oblique;
font-weight: lighter;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
a[href] {
color:#9e9c9c;
font-style: oblique;
font-weight: lighter;
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
}
select{
display: none;
}
input{
display: none;
}
@media (min-width: 500px) {
h1 {
font-size: 10rem;
}
}