aboutsummaryrefslogtreecommitdiff
path: root/css/main.css
blob: ad8e39af13b95d886f6c4fb4c0c50f4f2934946a (plain)
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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
.front-text {
  font-family: "Noto Sans", sans-serif;
  color: black;
}

.code {
  font-family: "Noto Sans Mono", monospace;
  color: gray;
}

code {
  font-family: "Noto Sans Mono", monospace;
  font-size: 12px;
}

.date {
  font-size: 16px;
}

@media (max-width: 700px) {
  .side-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .side-margin-x2 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
@media (min-width: 700px) {
  .side-margin {
    margin-left: 4rem;
    margin-right: 1rem;
  }
}

.intro h2 {
    font-size: 14px;
    margin-bottom: 0;
}

.link {
  color: black;
}

.link:active {
  color: white;
  background: blue;
  text-decoration: none;
}

.article-m {
  font-family: "Noto Sans Mono", monospace;
  font-size: 20px;
  text-decoration: none;
  opacity: 0.6;
  color: black;
  font-weight: 700;
  padding: 0px;
  margin-top: 2.8rem;
}

.article-m:hover {
  opacity: 1;
  color: blue;
}
.article-m:active {
  color: white;
  background: blue;
  text-decoration: none;
}

pre {
  overflow-x: scroll;
  font-size: 14px;
}

body {
  padding: 0;
  margin: 0;
  overflow: hidden;
  font-family: sans;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.content h1 {
  font-family: sans;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0px;
  padding-top: 2rem;
  line-height: 1.5;
  border-top: 1px solid;
  display: flex;
}

hr {
  border: solid 1px black;
  width: 20%;
  color: #ffff00;
}

.content h2 {
  font-family: sans;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;

  margin-bottom: 0;
}
.content h3 {
  font-family: sans;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;

  margin-bottom: 0;
}
.content h4 {
  font-family: sans;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;

  margin-bottom: 0;
}
.content p {
  margin-bottom: 4px;
  margin-top: 4px;
}

.content li {
  margin-top: 4px;
  margin-bottom: 4px
}