-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhomepage.css
More file actions
122 lines (111 loc) · 1.76 KB
/
Copy pathhomepage.css
File metadata and controls
122 lines (111 loc) · 1.76 KB
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
110
111
112
113
114
115
116
117
118
119
120
121
122
body {
background: black;
color: white;
}
h1 {
margin-bottom: 18px;
font-size: 4.5em;
}
body.home {
background-color: blueviolet;
}
body.home a {
/* font-size: 1.325em; */
border-bottom: 3px solid white;
display: block;
margin-bottom: 12px;
}
a:hover {
color: black;
border-color: mediumpurple;
}
body.home p {
font-size: 1.525em;
margin: 25px 0 65px 0;
max-width: 670px;
line-height: 1.45em;
position: relative;
z-index: 10;
}
body.home h4 {
font-size: 3.525em;
margin: 25px 0;
max-width: 670px;
}
#orientation-blocks {
display: flex;
align-items: stretch;
justify-content: space-between;
flex-direction: column;
flex-wrap: wrap;
}
.loading {
font-size: 3em;
letter-spacing: .09em;
color: chartreuse;
}
.block,
.channel {
display: flex !important;
padding: 15px;
align-items: stretch;
justify-content: center;
flex-direction: column;
width: 100%;
margin-bottom: 70px !important;
border: none !important;
font-size: 1.325em !important;
}
a.block,
a.channel {
cursor: pointer;
border: none !important;
font-size: 1em !important;
text-align: center;
}
a.channel {
border: 2px solid white !important;
font-size: 2em !important;
min-height: 300px;
}
.block img {
display: block;
margin: 0 auto 10px auto;
}
.knot {
position: fixed;
width: 100%;
display: block;
max-width: 15%;
}
.knot.one {
top: 5%;
right: 5%;
}
.knot.two {
top: 35%;
left: -10%;
max-width: 20%;
}
.knot.three {
bottom: 3%;
right: -2%;
max-width: 17%;
}
/* DESKTOP ONLY STYLES!! */
@media only screen and (min-width: 768px) {
#orientation-blocks {
flex-direction: row;
}
.block,
.channel {
width: 32%;
}
.knot.two {
left: auto;
right: 18%;
}
.knot.three {
bottom: -8%;
}
}