R-Kentaren commited on
Commit
ae82e4d
·
verified ·
1 Parent(s): 5d05e5e

Update style.css

Browse files
Files changed (1) hide show
  1. style.css +165 -18
style.css CHANGED
@@ -1,28 +1,175 @@
 
 
 
 
 
1
  body {
2
- padding: 2rem;
3
- font-family: -apple-system, BlinkMacSystemFont, "Arial", sans-serif;
 
 
 
4
  }
5
 
6
- h1 {
7
- font-size: 16px;
8
- margin-top: 0;
9
  }
10
 
11
- p {
12
- color: rgb(107, 114, 128);
13
- font-size: 15px;
14
- margin-bottom: 10px;
15
- margin-top: 5px;
16
  }
17
 
18
- .card {
19
- max-width: 620px;
20
- margin: 0 auto;
21
- padding: 16px;
22
- border: 1px solid lightgray;
23
- border-radius: 16px;
 
 
 
 
 
 
 
 
24
  }
25
 
26
- .card p:last-child {
27
- margin-bottom: 0;
 
 
28
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* CSS Document */
2
+ @charset "UTF-8";
3
+ @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,400;0,500;1,400;1,500&display=swap');
4
+
5
+
6
  body {
7
+ font-family: Google Sans, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
8
+ font-weight:300;
9
+ font-size:18px;
10
+ margin:0px;
11
+ padding:0px;
12
  }
13
 
14
+ p {
15
+ font-size: 14pt;
 
16
  }
17
 
18
+ .anchor {
19
+ scroll-margin-top: 77px;
 
 
 
20
  }
21
 
22
+
23
+ a:link,a:visited
24
+ {
25
+ color: #1367a7;
26
+ text-decoration: none;
27
+ }
28
+ a:hover {
29
+ color: #208799;
30
+ }
31
+
32
+ td.dl-link {
33
+ height: 160px;
34
+ text-align: center;
35
+ font-size: 22px;
36
  }
37
 
38
+ hr {
39
+ border: 0;
40
+ height: 1px;
41
+ background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
42
  }
43
+
44
+ /*
45
+ pre {
46
+ position: relative;
47
+ }
48
+
49
+ pre {
50
+ display: block;
51
+ padding: 20px;
52
+ background: #f2f2f2;
53
+ color: #555755;
54
+ } */
55
+
56
+ span.command-copy {
57
+ position: absolute;
58
+ top: 10px;
59
+ right: 10px;
60
+ opacity: .6;
61
+ font-size: 20px;
62
+ color: #555755;
63
+ }
64
+
65
+ span.command-copy:hover {
66
+ cursor: pointer;
67
+ }
68
+
69
+
70
+ /* buttons */
71
+
72
+
73
+ #btn-back-to-top {
74
+ position: fixed;
75
+ bottom: 20px;
76
+ right: 20px;
77
+ display: none;
78
+ }
79
+
80
+ .btn-outline-secondary, .btn-outline-primary {
81
+ border-radius: 4rem !important;
82
+ }
83
+
84
+ .smallpad.table{
85
+ width: unset !important;
86
+ margin-bottom: 0.5rem !important;
87
+ }
88
+
89
+ td,th {
90
+ border: none !important;
91
+ }
92
+
93
+ .smallpad.table>:not(caption)>*>* {
94
+ padding: 1 !important;
95
+ background-color: var(--bs-table-bg);
96
+ border-bottom-width: 0px !important;
97
+ box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
98
+ }
99
+
100
+
101
+ audio {
102
+ width:270px;
103
+ height: 43px;
104
+ }
105
+
106
+ .shortaudio{
107
+ width:239px;
108
+ }
109
+
110
+ .shorteraudio{
111
+ width:200px;
112
+ }
113
+
114
+
115
+ pre {
116
+ position: relative;
117
+ display: block;
118
+ padding: 20px;
119
+ background: #f2f2f2;
120
+ color: #555755;
121
+ padding: 1rem 1rem 1rem 5rem;
122
+ border-radius: 20px !important;
123
+ min-width: 100px;
124
+ }
125
+
126
+ .layered-paper-big { /* modified from: http://css-tricks.com/snippets/css/layered-paper/ */
127
+ box-shadow:
128
+ 0px 0px 1px 1px rgba(0,0,0,0.35), /* The top layer shadow */
129
+ 5px 5px 0 0px #fff, /* The second layer */
130
+ 5px 5px 1px 1px rgba(0,0,0,0.35), /* The second layer shadow */
131
+ 10px 10px 0 0px #fff, /* The third layer */
132
+ 10px 10px 1px 1px rgba(0,0,0,0.35), /* The third layer shadow */
133
+ 15px 15px 0 0px #fff, /* The fourth layer */
134
+ 15px 15px 1px 1px rgba(0,0,0,0.35), /* The fourth layer shadow */
135
+ 20px 20px 0 0px #fff, /* The fifth layer */
136
+ 20px 20px 1px 1px rgba(0,0,0,0.35), /* The fifth layer shadow */
137
+ 25px 25px 0 0px #fff, /* The fifth layer */
138
+ 25px 25px 1px 1px rgba(0,0,0,0.35); /* The fifth layer shadow */
139
+ margin-left: 10px;
140
+ margin-right: 45px;
141
+ margin-bottom: 30px;
142
+ }
143
+
144
+ .poppins-regular {
145
+ font-family: "Poppins", sans-serif;
146
+ font-weight: 400;
147
+ font-style: normal;
148
+ }
149
+
150
+ .poppins-medium {
151
+ font-family: "Poppins", sans-serif;
152
+ font-weight: 500;
153
+ font-style: normal;
154
+ }
155
+
156
+ .poppins-semibold {
157
+ font-family: "Poppins", sans-serif;
158
+ font-weight: 600;
159
+ font-style: normal;
160
+ }
161
+
162
+
163
+
164
+ .poppins-bold {
165
+ font-family: "Poppins", sans-serif;
166
+ font-weight: 700;
167
+ font-style: normal;
168
+ }
169
+
170
+ .poppins-extrabold {
171
+ font-family: "Poppins", sans-serif;
172
+ font-weight: 800;
173
+ font-style: normal;
174
+ }
175
+