-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.scss
76 lines (61 loc) · 1.08 KB
/
style.scss
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
$font-weight: bold;
$grid-padding: 20px;
.name {
color: red;
font-weight: $font-weight;
font-family: cursive;
}
div {
p {
padding-bottom: 5px;
padding-left: 5px;
padding-right: 5px;
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
max-width: 100%;
max-height: 100%;
}
}
%links {
font-weight: $font-weight;
}
a[href="index.html"]::before {
@extend %links;
content: "Return ";
}
a[href="index.html"]::after {
@extend %links;
content: "\01F3E0";
}
a::after {
@extend %links;
content: "\21d0";
}
a::before {
@extend %links;
content: "\21d2";
}
#italics {
font-style: italic;
}
a:hover {
background-color: aqua;
}
@media screen and (min-width: 700px) {
table, th, tr {
border: 3px dotted red;
text-align: center;
margin-right: auto;
margin-left: auto;
}
}
@media screen and (max-width: 500px) {
table, th, tr {
border: 2px solid gray;
text-align: left;
}
}