-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (109 loc) · 2.43 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
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/
/* body {
font-family: "Segoe WPC", "Segoe UI", "SFUIText-Light", "HelveticaNeue-Light",
sans-serif, "Droid Sans Fallback";
font-size: 14px;
padding: 0 12px;
line-height: 22px;
word-wrap: normal;
} */
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe WPC", "Segoe UI", "HelveticaNeue-Light", "Ubuntu", "Droid Sans", sans-serif;
font-size: 14px;
line-height: 1.6;
}
img {
max-width: 100%;
max-height: 100%;
}
a {
color: #4080d0;
text-decoration: none;
}
body .nav>h2>a {
font-size: 1em;
font-weight: normal;
cursor: pointer;
padding: 5px 10px;
margin: 10px;
display: block;
border-radius: 5px;
width: auto;
}
body .nav>h2>a:hover {
color: #4080d0;
}
a:focus,
input:focus,
select:focus,
textarea:focus {
outline: 1px solid -webkit-focus-ring-color;
outline-offset: -1px;
}
hr {
border: 0;
height: 2px;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}
h1 {
padding-bottom: 0.3em;
line-height: 1.7;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
text-align: center;
font-size: 2em;
}
a:hover {
color: #4080d0;
}
a:focus {
color: #4080d0;
outline: none;
}
a#gototop span {
font-weight: normal;
}
a#gototop {
background: #0e2732;
text-align: center;
width: 50px;
height: 50px;
border-radius: 50%;
display: inline-flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 30px;
color: white;
text-decoration: none;
position: fixed;
bottom: 25px;
right: 25px;
}
.accordion .accordion-section a.accordion-section-title {
font-size: 1.2em;
font-weight: 500;
color: #000;
}
.accordion .accordion-section .accordion-section-content {
font-size: 14px;
color: #0e2732;
}
.accordion .accordion-section .accordion-section-content p span {
font-weight: bold;
color: #0e2732;
}
.accordion {
border-bottom: 1px solid rgba(0, 0, 0, 0.2);
margin: 10px 0;
padding: 0 25px;
}
.sub_title {
font-size: 2em;
text-transform: uppercase;
color: #0e2732;
padding: 10px 0;
font-weight: bold;
text-align: center;
margin: 40px auto 10px;
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
}