-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcards.css
51 lines (45 loc) · 1.04 KB
/
cards.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
@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300&display=swap");
#coderList {
display: flex;
flex-wrap: wrap;
align-items: flex-end;
font-size: medium;
text-align: center;
font-weight: 200;
font-family: Montserrat, helvetica;
perspective: 1000px;
}
#coderList p {
align-self: flex-end;
font-size: 30px;
text-shadow: 1px 1px darkgray;
}
#coderList {
text-align: center;
font-size: medium;
font-weight: 200;
font-family: Montserrat, helvetica;
}
#coderList article {
display: flex;
justify-content: center;
height: 100px;
width: 100px;
padding: 50px;
margin: 20px;
border-radius: 15px;
background-color: transparent;
}
.alive {
box-shadow: 0px 4px 8px yellowgreen;
background-image: url("./img/alive.png");
background-size: cover;
color: rgb(68, 68, 68);
}
.dead {
box-shadow: 0px 4px 8px tomato;
background-image: url("./img/dead.jpg");
background-size: cover;
color: rgb(0, 0, 0);
}