-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (63 loc) · 1.23 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
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@600&display=swap');
body{
font-family: 'Oswald';
color: white;
display: flex;
flex-wrap: wrap;
justify-content: center;
background-image: url('https://i.ibb.co/zRLdcKL/wallpapersden-com-rick-and-morty-3840x2160.jpg');
background-size: cover;
}
img{
border-radius: 20px;
width:100%
}
.card-character{
display: inline-block;
width: 20%;
padding: 10px;
border-radius: 20px;
background-color: #363636;
margin: 10px 10px
}
.card-character:hover{
-webkit-transform:scale(1.1);
-moz-transform:scale(1.1);
-ms-transform:scale(1.1);
-o-transform:scale(1.1);
transform:scale(1.1);
box-shadow: 2px 0px 26px 1px #000000;
}
.alive{
background-color: rgb(0, 255, 21);
width: 10px;
height: 10px;
border-radius: 50px;
}
.death{
background-color: red;
width: 10px;
height: 10px;
border-radius: 50px;
}
.otro{
background-color: rgb(255, 255, 255);
width: 10px;
height: 10px;
border-radius: 50px;
}
.status div{
display: inline-block;
}
.status h3{
display: inline;
}
h1:hover{
color:#F77D0A
}
h1{
margin-bottom: 0;
}
.containerInfo{
margin:10px
}