-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
139 lines (113 loc) · 2.02 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
background-color: black;
}
/* Coloumns text container */
.col-text-container{
border: 1px solid white;
}
.container {
display : grid ;
grid-template-columns : 10fr 1fr 1fr 10fr ;
border: 4px black;
height: 250vh;
}
.column {
flex : 1 ;
/* padding : 20 px ; */
padding: 0.08vw;
}
/** MIDDLE COL **/
.middle {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
overflow: hidden;
}
.centered-text {
writing-mode: vertical-rl;
white-space: nowrap;
text-align: center;
display: flex;
align-items: center;
justify-content: space-between;
height: fit-content;
border: 4px solid ;
font-size: 4.5vw;
}
.anchorBarLink{
margin-top: 10vw;
margin-bottom: 20vw;
}
a{
text-decoration: none;
/* color: white; */
}
/* font */
p,h1,h2,h3,a{
/* font-family: 'Nanum Myeongjo', serif; */
font-family: "Major Mono Display", monospace;
font-weight: 400;
font-style: normal;
color: white;
}
/* iframe clock container */
.iframe-container {
position: relative;
padding-bottom: 100%;
/* This aspect ratio ensures the iframe scales properly */
height: 0;
overflow: hidden;
border: none ;
/* Hides the scrollbar */
}
iframe {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
border: none;
overflow: none;
/* Removes the border around the iframe */
}
.clockwrapper{
overflow: hidden ;
}
#clock{
width: 44vw;
height: 44vw;
}
/* add some space from the borders in h1 h2 and p tags */
h1,h2,p {
padding:10px ;
}
/* flowfield */
canvas{
align-self: center;
align-items: center;
}
/* Gallery */
.gallery {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
gap: 10px;
}
.gallery img {
max-width: 100%;
height: auto;
object-fit: contain;
border: 1px solid #ddd;
margin: 5px;
}
.lostfaith{
box-shadow: 0px 0px 40px #249da3;
width: 45vw;
/* padding: 1vw; */
scale: 90%;
}
.temperance{
box-shadow: 0px 0px 40px #912120;
width: 45vw;
scale: 90%;
}