-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.css
94 lines (89 loc) · 1.29 KB
/
index.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
body {
background-color: rgb(0, 100, 139);
height: 100%;
width: 100%;
}
p{
font-family: 'Luckiest Guy', cursive;
}
h2{
font-family: 'Luckiest Guy', cursive;
color:white;
}
h1{
margin-top: 10%;
font-family: 'Luckiest Guy', cursive;
color: blue;
text-shadow: -3px 0 black, 0 3px black, 3px 0 black, 0 -3px black;
animation: h1-scale 1s ease-in-out 4 alternate;;
}
.yellow{
color:yellow;
}
.green{
color:green
}
.red{
color:red
}
.home{
text-align: center;
vertical-align: middle;
}
img{
max-height: 100px;
min-height: 100px;
max-width: 100px;
min-width: 100px;
}
.card{
height:200px;
min-width:110px;
max-width:110px;
}
.character-card:hover {
cursor: pointer;
}
.random-card:hover{
cursor: pointer;
}
.character{
/* border: 1px solid; */
margin:10px;
padding: 10px;
}
.titleGame{
font-size: 100px;
margin-bottom: 40px;
}
/* .modal {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: none;
} */
/* #myPseudo{
margin-bottom: 40px;
} */
/* #randomCharacter{
margin-top: 40px;
} */
/* h2{
margin-bottom: 30px;
margin-top:30px
} */
.goOnGame{
margin-bottom: 30px;
margin-top:30px
}
@keyframes h1-scale {
from {
transform: scale(1.0);
}
to {
transform: scale(2);
}
}