-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathstyle.css
135 lines (113 loc) · 1.93 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
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 {
margin-left: 10%;
margin-right: 10%;
margin-top: 2em;
font-family: sans-serif;
}
h1 {
color: #000088
}
h2 {
font-size: 18px;
color: #000088
}
h3 {
font-size: 15px;
font-weight: normal;
color: #000088
}
table {
border: "10";
}
hr {
border-style: none;
border-top: 1px solid #CCCCCC;
margin-top: 10px;
margin-bottom: 10px
}
a {
color: #375EAB;
text-decoration: none;
}
div {
margin-left: 20px;
margin-top: 10px;
margin-bottom: 20px;
}
div#footer {
color: #555555
}
pre {
margin-left: 50px;
margin-top: 10px;
margin-bottom: 20px;
color: #000044;
font-size: 12px;
background-color: #EEEEFF;
padding: 10px;
}
figure {
margin-left: 2px;
margin-top: 2px;
margin-bottom: 2px;
padding: 2px;
}
figcaption {
color: #555555
}
#header_img:hover {
transform:scale(1.05);
}
select {
font-family: monospace;
white-space: pre;
font-size: 1.2em;
}
.api-section-link {
padding-top: 0.2ex;
padding-bottom: 0.2ex;
padding-left: 10px
}
.api-container {
display: flex;
margin: 0px;
padding: 0px;
}
.api-menu {
float: left;
display: block;
width: 250px;
background-color: #E0E0E0;
padding: 20px;
margin: 0px;
}
#api-to-top {
margin-bottom: auto;
position: sticky;
top: 0; /* Sticks to the top of the viewport when scrolling */
background-color: #fff;
padding: 10px;
text-align: center;
cursor: pointer;
opacity: 0;
border-radius: 0 0 10px 10px;
transition: opacity 0.3s ease-in-out;
}
#api-to-top.visible {
opacity: 1;
}
.api-to-top-arrow {
font-size: 20px; /* Make the arrow slightly larger than text */
line-height: 1;
vertical-align: middle;
margin: 0 5px; /* Add spacing around the arrow */
}
.api-content {
float: left;
flex: 1;
min-width: 400px"
}
.api-entry {
display:inline;
margin: 0px;
}