generated from codetracker-learning/INDIVIDUAL-PROJECT-sorting-hat
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
80 lines (63 loc) · 944 Bytes
/
main.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
body {
background-color: tan;
}
.card-category {
margin-left: 75px;
}
.card-Welcome {
text-align: center;
}
.card-title {
text-align: center;
font-size: x-large;
background-color: navy;
color: tan;
}
.card-body {
text-align: center;
font-size: larger;
background-color: maroon;
color: gold;
}
.card {
text-align: center;
text-align: left;
display: flex;
flex-wrap: wrap;
}
.btn-Rave {
background-color: navy;
color: tan;
}
.btn-Gry {
background-color: maroon;
color: gold;
}
.btn-Huff {
background-color: gold;
color: maroon;
}
.btn-Sly {
background-color: green;
color: darkgrey;
}
.btn-All {
background-color: black;
color: azure;
}
#student-text {
font-size: xx-large;
margin-left: 55px;
margin-top: 200px;
}
#expelled-text {
font-size: xx-large;
margin-left: 1000px;
}
.Teams {
text-align: center;
}
.all-cards {
display: flex;
justify-content: space-around;
}