-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
63 lines (57 loc) · 798 Bytes
/
index.css
File metadata and controls
63 lines (57 loc) · 798 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
63
body
{
font-family: sans;
}
@media (orientation: landscape)
{
main
{
font-size: 1em;
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 1em;
padding-left:0.5rem;
padding-right:0.5rem;
}
}
@media (orientation: portrait)
{
main
{
font-size: 2em;
display: grid;
grid-template-columns: 1fr;
gap: 1em;
padding-left:0.5rem;
padding-right:0.5rem;
}
}
section
{
border: 4px solid #fcf443;
border-radius: 0.7rem;
background-color:#9C59D1;
box-shadow: 0.2rem 0.2rem #919191;
}
.itemhead
{
background-color:#fcf443;
color: black;
margin:0;
padding: 0.2rem;
}
.itembody
{
color:white;
margin:0;
padding: 1rem;
}
.itembody a
{
color: white;
}
.itembody a::before
{
font-size: small;
content: "\1F517";
}