-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
109 lines (94 loc) · 1.4 KB
/
style.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
width: 100%;
height: 100%;
}
body {
background: #fffbeb;
font-weight: bold;
font-family: 'Montserrat', sans-serif;
}
a, a:link, a:hover, a:visited {
text-decoration: none;
}
.container {
width: 100%;
height: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.box {
width: 700px;
height: 600px;
position: relative;
margin-top: -10px;
}
@media (max-width: 700px) {
.box {
width: 100vw;
height: 70vh;
}
}
p {
position: absolute;
font-size: 12em;
transform: translate(-50%, -50%);
line-height: 1;
text-shadow: 1px 1px 1px #999;
text-transform: uppercase;
}
@media (max-width: 700px) {
p {
font-size: 20vw;
transform: translate(-35vw, -50%);
}
}
.red {
color: #E42149;
mix-blend-mode: multiply;
}
.blue {
color: #0091E5;
}
.yellow {
color: #FFF146;
}
.first {
top: 48%;
left: 48%;
}
.second {
top: 49.5%;
left: 49.5%;
}
.third {
top: 51%;
left: 51%;
}
/* Links We Love */
.links_we_love {
text-align: center;
padding: 30px;
}
.links {
padding: 10px;
display: inline-block;
overflow: hidden;
border-radius: 100px;
border: 1px solid;
transition: background 0.3s linear;
}
.links.twitter {
color: #1da1f2;
background-color: transparent;
}
.links.twitter:hover {
color: #fff;
background-color: #1da1f2;
}