-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlol.css
207 lines (199 loc) · 2.64 KB
/
lol.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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
EARLIER THIS YEAR
T
Youshared 8 items
Jul 30
Javascript
background.js
HTML
cat.html
HTML
about.html
HTML
pictures.html
Style Sheet
lol.css
HTML
facts.html
Google Drive Folder
web
Google Drive Folder
bridges to computing
Show less...
Can view
Anyone with the link
T
Yourenamed an item
Jul 30
HTML
pictures.html
Copy of pictures.html
T
Yourenamed an item
Jul 30
Style Sheet
lol.css
Copy of lol.css
T
Yourenamed an item
Jul 30
HTML
facts.html
Copy of facts.html
T
Yourenamed an item
Jul 30
HTML
cat.html
Copy of cat.html
T
Yourenamed an item
Jul 30
Javascript
background.js
Copy of background.js
T
Yourenamed an item
Jul 30
HTML
about.html
Copy of about.html
T
Yourestricted access to 6 items
Jul 30
Javascript
Copy of background.js
HTML
Copy of cat.html
HTML
Copy of about.html
HTML
Copy of pictures.html
Style Sheet
Copy of lol.css
HTML
Copy of facts.html
Anyone
M
Matthew Y
D
Danny Aksenov
T
Youmoved an item to
Jul 30
Google Drive Folder
bridges to computing
Google Drive Folder
web
T
Youmoved 6 items to
Jul 30
Google Drive Folder
web
Javascript
Copy of background.js
HTML
Copy of cat.html
HTML
Copy of about.html
HTML
Copy of pictures.html
Style Sheet
Copy of lol.css
HTML
Copy of facts.html
T
Youuploaded an item
Jul 30
Google Drive Folder
web
T
Youmoved an item to
Jul 30
Google Drive Folder
bridges to computing
Google Drive Folder
game project Baerde and Yan
T
Youuploaded an item
Jul 30
Google Drive Folder
bridges to computing
Show more activity
247 MB (2%) of 15 GB used - Manage
lol.css
Open with
@import url(http://fonts.googleapis.com/css?family=Bubblegum+Sans);
span {
display: inline-block;
opacity: 0;
transition: 2s;
}
body {
padding: 50px;
font-family: 'Bubblegum Sans', cursive;
font-size: 32px;
}
canvas {
position: absolute;
top:0;
left:0;
width:100%;
height:100%;
z-index:-1;
}
h1 {
margin: 0;
}
table {
margin-top:150px;
}
img {
border-style:ridge;
border-width: 5px;
border-color: yellow;
position: relative;
color: #FF3300;
text-align: center;
line-height: 200px;
margin: 20px;
background: #FFFF66;
width: 200px;
height: 200px;
transition: all 1s ease;
transform-style: preserve-3d;
}
img:hover
{
height: 75%;
width: 75%;
}
.card-container {
perspective: 700;
}
.card {
position: relative;
color: #FF3300;
text-align: center;
line-height: 200px;
margin: 20px;
background: #FFFF66;
width: 200px;
height: 200px;
transition: all 1s ease;
transform-style: preserve-3d;
}
.front, .back {
background: #FFFF66;
position: absolute;
top: 0;
left: 0;
width: 200px;
height: 200px;
backface-visibility: hidden;
}
.back {
transform: rotateY(180deg);
}
.card:hover {
transform: rotateY(180deg);
}