-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
168 lines (149 loc) · 3.35 KB
/
styles.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
body {
margin: 0;
padding: 0;
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
perspective: 1000px;
overflow: hidden;
}
#content-container {
animation: disappear 300s forwards;
transition: transform 4s cubic-bezier(0.25, 0.1, 0.25, 1);
padding: 20px;
max-width: 800px;
justify-content: center;
font-family: 'Courier New', monospace;
transform-origin: center bottom;
position: relative;
pointer-events: none;
overflow: hidden;
background-color: rgba(240, 255, 255, 0.289);
}
@keyframes disappear {
to {
opacity: 0;
}
}
.thought-bubble {
background: rgba(255, 255, 255, 0.9);
padding: 10px;
border-radius: 16px;
margin: 10px 0;
opacity: 0;
transition: opacity 2s, left 2s, top 2s;
position: absolute;
max-width: 350px;
z-index: 1000;
}
a {
display: inline-block;
transition: all 1s;
word-wrap: break-word;
}
.thought-anchor {
position: relative;
opacity: 0;
transition: opacity 2s;
}
#sleepy-governance {
animation: fadeIn 30s forwards, disappear 200s forwards, gradientAnimation 15s ease infinite;
position: fixed;
padding: 20px;
top: 50%;
left: 50%;
justify-content: center;
transform: translate(-50%, -50%);
width: 50vw;
height: 40vh;
border-radius: 12px;
transition: all 120s ease-in-out;
background: linear-gradient(135deg,
rgba(240, 248, 255, 0.05),
rgba(173, 216, 230, 0.08),
rgba(135, 206, 235, 0.12),
rgba(173, 216, 230, 0.08),
rgba(240, 248, 255, 0.05));
background-size: 400% 400%;
pointer-events: none;
z-index: 1000;
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}
/* Gradient animation keyframes */
@keyframes gradientAnimation {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
.governance-layer {
margin: 10px;
transition: all 2s ease;
width: 300px;
height: 125px;
border-radius: 10px;
background-color: rgba(200, 200, 255, 0.1);
padding: 10px;
box-sizing: border-box;
position: absolute;
}
.governance-layer h3 {
color: #4a4a4a;
font-size: 1.2em;
margin-bottom: 5px;
}
.governance-layer p {
color: #6a6a6a;
font-style: italic;
}
.interop-effect {
position: absolute;
background-color: rgba(255, 255, 104, 0.5);
border-radius: 5px;
padding: 5px;
font-size: 0.8em;
opacity: 0;
transition: opacity 1s ease;
}
.gone-410 {
color: #888;
font-weight: normal;
font-size: 0.9em;
padding: 5px;
border: 1px dashed #888;
background-color: rgba(0, 0, 0, 0.05);
position: absolute;
display: flex;
align-items: center;
justify-content: center;
box-sizing: border-box;
overflow: hidden;
transition: opacity 0.1s ease;
pointer-events: none;
}
@keyframes flicker {
0%,
100% {
opacity: 0.4;
}
50% {
opacity: 0.1;
}
}