-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
147 lines (136 loc) · 2.53 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
140
141
142
143
144
145
146
147
body{
background-color: #5555DD;
margin: 0px;
}
p{
font-family: Comic Sans MS;
}
a{
color: black;
font-family: Comic Sans MS;
}
iframe{
border-radius: 10px;
}
.background{
background-color: #e5e5f7;
opacity: 1;
z-index: -10;
background-image: repeating-linear-gradient(45deg, #a7acff 25%, transparent 25%, transparent 75%, #a7acff 75%, #a7acff), repeating-linear-gradient(45deg, #a7acff 25%, #ffffff 25%, #ffffff 75%, #a7acff 75%, #a7acff);
background-position: 0 0, 50px 50px;
background-size: 100px 100px;
position:fixed;
padding:0;
margin:0;
overflow: hidden;
width: 200%;
height: 200%;
animation: backgroundScroll 5s linear infinite;
}
.headerBox{
border: 3px solid black;
border-top-right-radius: 50px;
border-top-left-radius: 50px;
background-color: lightskyblue;
max-width: 90%;
width: 700px;
padding: 6px;
}
.box{
border: 3px solid black;
border-top: 0px;
margin-top: 0px;
padding: 6px;
background-color: white;
max-width: 90%;
width: 700px;
}
.boxWidth{
max-width: 90%;
padding: 6px;
width: 700px;
pointer-events: none;
}
.mediaBox{
background-color: white;
margin-bottom: 6px;
display: inline-block;
padding: 6px;
border: 2px solid black;
border-radius: 5px;
margin: 3px;
}
.mediaBox img{
height: 100px;
}
.mediaBox p{
color: black;
text-decoration: underline;
font-family: Comic Sans MS;
display: block;
margin: 0px;
}
.mediaBox2{
display: inline-block;
background-color: white;
margin-bottom: 6px;
padding: 6px;
border: 2px solid black;
border-radius: 5px;
margin: 3px;
width: 150px;
height: 100%;
}
.mediaBox2 img{
width: 150px;
height: 150px;
object-fit: cover;
}
.mediaBox2 p{
color: black;
text-decoration: underline;
font-family: Comic Sans MS;
display: block;
margin: 0px;
}
.title{
font-family: Comic Sans MS;
}
.titleLink{
margin: 6px;
}
.floatingHead{
max-width: 400px;
width: calc(50vw - 350px);
min-width: 100px;
animation: float 2s ease infinite;
}
@keyframes backgroundScroll{
0%{
margin-top: 0px;
margin-left: 0px;
}
100%{
margin-top: -100px;
margin-left: -100px;
}
}
@keyframes float{
0%{
margin-top: 0px;
}
50%{
margin-top: 100px;
}
100%{
margin-top: 0px;
}
}
@keyframes floatOut{
0%{
margin-top: 0%;
}
100%{
margin-top: -100%;
}
}