-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
133 lines (102 loc) · 1.73 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
html{
scrollbar-color: #a5ff00 #1d0095 ;
scroll-behavior: smooth;}
#shaders{
min-height: 100vh;
background-size: 20px 20px;
background-image: repeating-linear-gradient(to right, #886bfe, #886bfe 1px, transparent 1px, transparent);
}
body{
z-index: -1;
display: flex;
flex-direction:column;
background:linear-gradient(34deg, #fff, #96ff00,#fff,#a5ff00,#fff,#1d0095,#fff);
animation: 180s infinite alternate slidein;
top: 0;
left:0;
width: 100%;
min-height: 100%;
margin: 0;
padding:0;
}
@keyframes slidein {
from {
background-size: 500% 200%;}
50%{
background-size: 200% 500%;}
to{
background-size:500% 200%;}
}
h3 {
font-size: 24px;
}
#container{
opacity: 1.0;
margin:0;
padding:0;
display:flex;
flex-direction: row;
justify-content: center;
}
a{
text-decoration: none;
font-style: italic;
color: black;
}
.importantlink{
font-weight: 800;
}
p,ul,li{font-family: math;
font-size: 24px;}
nav.long{
height: 15%;}
nav{
opacity: 1.0;
background-color: white;
padding: 15px;
min-height: 15%;
max-height: 50vh;
height:15vh;
position: sticky;
top: 25%;
border-radius: 5px;
margin: 5% 2% 0 0;
}
#content{
width:60%;
max-width: 450px;
background-color: white;
margin: 5% 0 0 0;
border-radius: 5px;
padding: 15px;
text-align: justify;
}
header{
writing-mode: vertical-rl;
text-orientation: sideways;
background-color: white;
margin: 15px 0 0 5%;
width: 50px;
border-radius: 5px;
padding: 15px;
position: sticky;
top: 25%;
max-height: 200px;
box-shadow: 8px 8px #886bfe;
}
@media only all and (max-width: 450px) {
header{
display:none}
}
.sthrough {
text-decoration:line-through}
.descsouvenir {
font-weight: bold;
}
.idsouvenir{
font-weight: bold;
}
img{
width: 95%;
box-shadow: 8px 8px #886bfe;
}