Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/gurusabarish/hugo-profile.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/static
diff options
context:
space:
mode:
authorgurusabarish <gurusabarisha@gmail.com>2021-06-08 13:46:14 +0300
committergurusabarish <gurusabarisha@gmail.com>2021-06-08 13:46:14 +0300
commit0cf404308ffa998c7126788897719f65a41aa466 (patch)
tree4b5d71fa59efdb7f679a4c110eeee631d8d6dbdf /static
parent6fb96c3864fc67b5f1e999d1796e3c460865f9a3 (diff)
list view
Diffstat (limited to 'static')
-rw-r--r--static/css/v3/list.css17
-rw-r--r--static/css/v3/loader.css26
-rw-r--r--static/css/v3/navbar-footer.css30
-rw-r--r--static/css/v3/v3.css59
4 files changed, 73 insertions, 59 deletions
diff --git a/static/css/v3/list.css b/static/css/v3/list.css
new file mode 100644
index 0000000..637854e
--- /dev/null
+++ b/static/css/v3/list.css
@@ -0,0 +1,17 @@
+html {
+ scroll-behavior: smooth;
+}
+body {
+ font-family: "Roboto", sans-serif;
+ background-color: #0a192f;
+}
+.post-ol {
+ list-style-type: decimal-leading-zero;
+ padding-top: 1%;
+}
+.post-ol li {
+ padding-top: 3%;
+}
+.post-sum p {
+ margin: 0;
+}
diff --git a/static/css/v3/loader.css b/static/css/v3/loader.css
new file mode 100644
index 0000000..665fee1
--- /dev/null
+++ b/static/css/v3/loader.css
@@ -0,0 +1,26 @@
+#loader {
+ position: fixed;
+ border: 5px solid #007bff;
+ border-radius: 50%;
+ border-top: 5px solid #444444;
+ border-bottom: 5px solid #444444;
+ border-right: 5px solid #444444;
+ width: 50px;
+ height: 50px;
+ animation: spin 1s linear infinite;
+}
+
+@keyframes spin {
+ 100% {
+ transform: rotate(360deg);
+ }
+}
+
+.center {
+ position: absolute;
+ top: 0;
+ bottom: 0;
+ left: 0;
+ right: 0;
+ margin: auto;
+}
diff --git a/static/css/v3/navbar-footer.css b/static/css/v3/navbar-footer.css
new file mode 100644
index 0000000..f18ba1c
--- /dev/null
+++ b/static/css/v3/navbar-footer.css
@@ -0,0 +1,30 @@
+/* v3 navbar */
+.navbar-brand {
+ color: #007bff !important;
+}
+.navbar .nav-link {
+ color: #f9fafc !important;
+}
+.navbar .nav-link:hover {
+ color: #007bff !important;
+}
+.navbar-text {
+ font-size: 16px !important;
+}
+
+/* v2 and v3 footer */
+footer {
+ color: #8392a5;
+ border-top-width: 1px !important;
+ border-color: #8392a5;
+}
+
+footer a {
+ color: #8392a5;
+}
+
+/* v2 and v3 news */
+.news a {
+ color: #1c2d41;
+ text-decoration: none;
+}
diff --git a/static/css/v3/v3.css b/static/css/v3/v3.css
index a9e93d3..e444544 100644
--- a/static/css/v3/v3.css
+++ b/static/css/v3/v3.css
@@ -9,48 +9,6 @@ a:hover {
text-decoration: none;
}
-/*loader */
-#loader {
- position: fixed;
- border: 5px solid #007bff;
- border-radius: 50%;
- border-top: 5px solid #444444;
- border-bottom: 5px solid #444444;
- border-right: 5px solid #444444;
- width: 50px;
- height: 50px;
- animation: spin 1s linear infinite;
-}
-
-@keyframes spin {
- 100% {
- transform: rotate(360deg);
- }
-}
-
-.center {
- position: absolute;
- top: 0;
- bottom: 0;
- left: 0;
- right: 0;
- margin: auto;
-}
-
-/* v3 navbar */
-.navbar-brand {
- color: #007bff !important;
-}
-.navbar .nav-link {
- color: #f9fafc !important;
-}
-.navbar .nav-link:hover {
- color: #007bff !important;
-}
-.navbar-text {
- font-size: 16px !important;
-}
-
/* v3 home */
.name {
padding-left: 3%;
@@ -372,20 +330,3 @@ a:hover {
color: #8892b0;
font-size: 17px;
}
-
-/* v2 and v3 footer */
-footer {
- color: #8392a5;
- border-top-width: 1px !important;
- border-color: #8392a5;
-}
-
-footer a {
- color: #8392a5;
-}
-
-/* v2 and v3 news */
-.news a {
- color: #1c2d41;
- text-decoration: none;
-}