-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
136 lines (116 loc) · 1.98 KB
/
styles.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
128
129
130
131
132
133
134
135
body {
background-color: #f5f5f5;
}
.center-content {
text-align: left;
font-family: 'Lexend', sans-serif;
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
}
.content-container {
text-align: left;
font-family: 'Lexend', sans-serif;
max-width: 1000px;
margin: 0 auto;
padding: 40px 20px;
}
.profile-pic {
width: 250px;
height: 250px;
border-radius: 50%;
display: block;
margin: 0 auto 20px auto;
box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
}
h1 {
font-weight: 700;
color: #333;
margin-bottom: 20px;
}
p, div {
font-weight: 400;
color: #555;
line-height: 2;
margin-bottom: 20px;
}
a {
color: #0056b3;
text-decoration: none;
position: relative;
}
a:focus, a:hover {
outline: 2px solid #0056b3;
outline-offset: 2px;
}
ul {
list-style: none;
padding: 0;
margin: 0 0 20px 0;
}
li {
padding-left: 20px;
position: relative;
}
li:before {
content: '•';
position: absolute;
left: 0;
font-size: 18px;
color: #333;
}
.phonetic {
font-size: 95%;
font-weight: 200;
color: #999;
}
table {
width: 100%;
border-collapse: collapse;
margin: 20px 0;
max-width: 1000px;
}
table th, table td {
text-align: left;
padding: 10px;
border-bottom: 1px solid #e0e0e0;
}
table th {
font-weight: 700;
color: #333;
}
table td {
font-weight: 400;
color: #555;
}
/* Mobile view */
@media (max-width: 767px) {
.center-content {
padding: 20px 10px;
}
h1 {
font-size: 24px;
}
p, div {
font-size: 16px;
}
table th, table td {
padding: 5px;
font-size: 12px;
}
}
/* Tablet view */
@media (min-width: 768px) and (max-width: 1024px) {
.center-content {
padding: 30px 15px;
}
table th, table td {
padding: 8px;
font-size: 14px;
}
}
@media (min-width: 1201px) {
.center-content {
padding: 40px 80px;
}
}