-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.scss
89 lines (75 loc) · 1.24 KB
/
styles.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
@media print {
header {
display: none;
}
footer {
display: none;
}
}
body {
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
width: 1100px;
margin: auto;
}
.tag {
margin: 4px;
padding: 4px;
border-radius: 2px;
/* color: white;
background-color: #5553a9; */
color: #000000;
background-color: #ffdb10;
font-weight: 600;
}
h2 {
display: inline;
color: #5553a9;
}
section {
width: 100%;
background-color: #f7f7fb;
border-radius: 10px;
padding: 10px;
margin: 10px 0;
}
section ul {
list-style: none;
}
section li:before {
padding: 5px;
border-radius: 2px;
background-color: #5553a9;
}
.links {
list-style: none;
padding: 0;
margin: 0;
}
.links li {
display: inline-block;
margin: 4px;
}
.links li a {
/* color: #5553a9; */
color: #ffdb10;
}
nav ul {
margin: 0;
padding: 0;
list-style: none;
text-align: center;
}
nav li {
display: inline-block;
margin: 0 5px;
}
nav li a {
font-weight: 600;
color: #5553a9;
text-decoration: none;
font-size: 1.2em;
}
nav li a:hover {
text-decoration: underline solid #5553a9 2px;
text-underline-offset: 5px;
}