-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyling.css
More file actions
86 lines (77 loc) · 1.09 KB
/
styling.css
File metadata and controls
86 lines (77 loc) · 1.09 KB
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
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,100..700;1,100..700&display=swap");
* {
margin: 5px 0;
}
body {
font-size: 16px;
font-family: "Roboto Mono", monospace;
font-style: normal;
background-color: #353535;
color: white;
padding: 20px;
margin: 0;
}
a,
a:link,
a:hover,
a:active {
color: #90d9f9;
}
.wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
column-gap: 20px;
}
h1 {
font-size: 1.5rem;
margin-top: 0;
}
h2 {
font-size: 1.25rem;
}
h3 {
text-transform: uppercase;
}
ul {
list-style-type: none;
padding: 0;
}
.bold-text {
font-weight: 500;
}
.small-text {
font-size: 0.875rem;
}
.align-right {
text-align: right;
}
.spacer {
height: 50px;
}
.spacer-2 {
margin-bottom: 20px;
}
.tag {
color: black;
}
.react-tag {
background-color: #90d9f9;
}
.vue-tag {
background-color: #74b785;
}
.typescript-tag {
background-color: #4e77c2;
}
.angular-tag {
background-color: #be201c;
}
.ruby-tag {
background-color: #961b02;
}
.node-tag {
background-color: #3f6d1a;
}
.php-tag {
background-color: #8a91bc;
}