-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (54 loc) · 863 Bytes
/
index.css
File metadata and controls
63 lines (54 loc) · 863 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
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
.card {
display: flex;
flex-flow: column;
margin: 0px 0px 0px 0px;
border: 5px solid black;
width: 500px;
max-width: 500px;
height: 700px;
max-height: 700px;
}
.kitty {
align-self: center;
width: 500px;
max-width: 500px;
height: 600px;
max-height: 600px;
}
.bottom {
display: flex;
flex-flow: row;
margin: 0px 0px 0px 0px;
font-family: Helvetica, sans-serif;
width: 500px;
max-width: 500px;
height: 100px;
max-height: 100px;
}
.bottomleft, .bottomright {
box-sizing: border-box;
display: flex;
flex-flow: column;
flex-grow: 1;
margin: 0px 0px 0px 0px;
align-items: center;
}
.bottomleft {
color: white;
background-color: red;
}
.name {
font-size: 50px;
margin: 5px 0px 0px 0px;
}
.position {
font-size: 25px;
}
.bottomright {
justify-content: center;
color: red;
background-color: yellow;
}
.team {
font-size: 25px;
}