-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.css
More file actions
35 lines (31 loc) · 794 Bytes
/
Copy pathapp.css
File metadata and controls
35 lines (31 loc) · 794 Bytes
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
body{
background-image: url("https://freepngimg.com/thumb/cat/35859-3-black-cat-file.png");
background-size: 200px;
background-color: aquamarine;
background-repeat: repeat ;
animation: michi 5s infinite alternate;
}
.cont{
background: rgba(0, 0, 0, .5);
width: 90vw;
height: 90vh;
margin: auto;
display: none;
}
@keyframes michi {
0% { background-position-x: 0%; background-position-y: 100%; background-size: 0px;}
100% { background-position-x: 100%; background-position-y: 0%; background-size: 2500px;}
}
.titole{
background: red;
font-size: 3em;
text-shadow: 3px 3px 0 #444;
color: white;
text-align: center;
}
#cub{
background: black;
width: 15px;
height: 15px;
position: fixed;
}