-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (91 loc) · 1.44 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
body {
font-family: Helvetica, "You don't have Helvetica? Fine.", Arial, sans-serif;
background-color: #dcedfd;
}
main,
footer {
margin: 0 30px;
}
.black-lives-matter {
text-align: center;
font-size: 4em;
text-transform: uppercase;
background: black;
color: white;
padding: 1em;
font-weight: bold;
}
.flex-container {
display: flex;
flex-flow: row wrap;
justify-content: center;
}
.item {
display: flex;
padding: 1em;
justify-content: center;
align-items: center;
font-weight: bold;
width: 9em;
height: 6em;
font-size: 2em;
border: black 0.07em solid;
border-radius: 0.6em;
margin: 0.3em;
}
.item:hover, .item:hover a {
transition: 0.5s;
}
.item a {
color: black;
}
.header-cell {
background: #ff634799;
}
.header-cell:hover {
background: tomato;
}
.what-is-this {
background: #0000ff99;
}
.what-is-this:hover {
background: blue;
}
.what-is-this:hover a {
color: white;
}
.deduction-income {
background: #00800099;
}
.deduction-income:hover {
background: green;
}
.deduction-income:hover a {
color: white;
}
.pride-flags {
background: #80008099;
}
.pride-flags:hover {
background: purple;
}
.pride-flags:hover a {
color: #dcedfd;
}
.boycotts {
background: #D0D0D099;
}
.boycotts:hover {
background: white;
}
.boycotts:hover a {
color: red;
}
@media screen and (max-width: 320px) {
.black-lives-matter {
padding: 0.5em;
}
.item a {
text-align: center;
}
}