-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (81 loc) · 1.37 KB
/
style.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
* {
margin: 0;
padding: 0;
background-color: #eee;
}
body {
padding-top: 60px;
font-family: 'Microsoft JhengHei', 'arial', 'helvetica', 'sans-serif';
}
p {
color: black;
font-size: 16px;
text-align: center;
}
.special {
text-align: left;
}
.red {
color: red;
}
.container p {
width: 100%;
max-width: 960px;
margin: auto;
line-height: 1.5;
margin-bottom: 1em;
}
.container ul {
width: 100%;
max-width: 400px;
margin: auto;
line-height: 1.5;
margin-bottom: 1em;
}
h1 {
font-size: 30px;
color:black;
text-align: center;
margin-bottom: 1em;
}
h2 {
font-size: 30px;
color:black;
text-align: center;
margin-bottom: 1em;
}
h3 {
background-color: #34495e;
padding: 16px 35px 16px 24px;
border-left: 8px solid #41b883;
width: 100%;
max-width: 960px;
font-size: 28px;
margin: auto;
line-height: 1;
color:#fff;
text-align: left;
margin-bottom: 1em;
}
nav {
background-color: #4f8aff;
text-align: center;
opacity: .85;
position: fixed;
top: 0;
left: 0;
width: 100%;
font-size: 0px;
}
nav a {
background-color: #4f8aff;
color: #ffffff;
text-decoration: none;
display: inline-block;
padding: 6px 20px;
font-size: 16px;
transition: 0.5s;
}
nav a:hover {
background-color: #ff4b96;
}