-
Notifications
You must be signed in to change notification settings - Fork 1
/
grammer.css
127 lines (124 loc) · 1.87 KB
/
grammer.css
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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.logo {
width: 30px;
height: 30px;
margin-left: 290px;
}
.tolelom {
font-family: Brush Script MT;
font-size: 32px;
margin-left: 12px;
font-weight: bold;
}
@font-face {
font-family: "SDGothic";
src: url(./fonts/AppleSDGothicNeoR.ttf);
}
.nav {
height: 75px;
border-bottom: 1.5px solid #e7e7e6;
display: flex;
align-items: center;
}
.nav-items-left {
display: flex;
margin-left: 12px;
}
.nav-items-right {
display: flex;
margin-left: auto;
margin-right: 290px;
}
.nav-item {
margin-left: 30px;
font-weight: bold;
font-size: 16px;
font-family: "SDGothic";
letter-spacing: 0.2ch;
}
.search {
width: 18px;
height: 15px;
}
.sidebar {
border-right: 1.5px solid #e7e7e6;
position: fixed;
top: 75px;
bottom: 0px;
left: 0px;
width: 15%;
}
.side-title {
padding-top: 12px;
padding-left: 5%;
font-size: 20px;
font-family: "SDGothic";
font-weight: bold;
}
a {
color: inherit;
text-decoration: none;
}
.sidebar a:hover {
background-color: #e7e7e6;
}
.sidebar ul > li > a {
display: block;
font-size: 20px;
font-family: "SDGothic";
padding-top: 7px;
padding-bottom: 7px;
padding-left: 15%;
}
.menu {
padding-top: 15px;
}
.menu li {
padding-left: 10%;
}
.main {
max-width: 70%;
padding: 30px 0px 0px 50px;
margin: 0 auto;
font-family: "SDGothic";
}
h1 {
font-size: 30px;
margin: 30px 0px 10px;
}
h3 {
font-size: 25px;
margin: 30px 0px 10px;
}
hr {
margin-bottom: 20px;
}
p,
pre {
font-size: 20px;
font-family: "SDGothic";
line-height: 1.5em;
letter-spacing: 0.02ch;
}
.code {
padding: 1em;
background: #f3f3f3;
color: #444;
line-height: 1.67;
border-radius: 10px;
}
table {
border: 1px solid black;
border-collapse: collapse;
text-align: left;
}
th,
td {
border: 1px solid black;
padding: 11px 12px 11px 11px;
font-size: 18px;
}