-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
40 lines (38 loc) · 1.13 KB
/
style.css
File metadata and controls
40 lines (38 loc) · 1.13 KB
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
/* styles.css */
@import url(
"https://fonts.googleapis.com/css2?family=Pacifico&display=swap");
* {
box-sizing: border-box;
margin: 0;
padding: 0;
color:#fff;
}
body {
font-family: 'Arial', sans-serif;
background-image: url("https://i.pinimg.com/originals/c7/fb/05/c7fb05d41cd30ccf51985313c434b92f.gif");
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
margin: 0;
background-color: #f8f9fa;}
.card {
overflow: hidden;
background: url('https://cdn.dribbble.com/users/14038/screenshots/6361899/galaxy_dribbble.gif');
background-size: cover;
animation: sparkleBackground 10s infinite linear;
width: 80px;
height: 120px;
margin: 10px;
border: 1px solid #333;
display: flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
cursor: pointer;
}
.row {
display: flex;
flex-wrap: wrap;
}