aboutsummaryrefslogtreecommitdiff
path: root/template/style.css
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2022-08-14 17:25:43 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2022-08-14 17:25:43 +0200
commitdecde989ff7614dc109af1fb42559ff4814ffc7c (patch)
treec048abd48246a239b007ccdb589cff609e151a25 /template/style.css
parent5bcf488adc75256e53b59fa42cdd0407020bff8d (diff)
downloadmitjafelicijan.com-decde989ff7614dc109af1fb42559ff4814ffc7c.tar.gz
Removed search from the blog
Diffstat (limited to 'template/style.css')
-rwxr-xr-xtemplate/style.css103
1 files changed, 1 insertions, 102 deletions
diff --git a/template/style.css b/template/style.css
index ebb2b26..20ed862 100755
--- a/template/style.css
+++ b/template/style.css
@@ -386,80 +386,6 @@ audio {
386 color: #666; 386 color: #666;
387} 387}
388 388
389/* comments */
390
391.comments input {
392 width: 100%;
393 font: var(--comment-form-font);
394 border: 1px solid #bbb;
395 padding: 5px;
396}
397
398.comments textarea {
399 width: 100%;
400 height: 100px;
401 resize: vertical;
402 font: var(--comment-form-font);
403 border: 1px solid #bbb;
404 padding: 5px;
405}
406
407.comments ul {
408 list-style-type: none;
409 padding: 0;
410 margin-top: 30px;
411}
412
413.comments hr {
414 border: initial !important;
415 border-top: initial !important;
416}
417
418/* search form */
419
420.search-form {
421 position: fixed;
422 top: 120px;
423 left: 50%;
424 margin-left: -250px;
425 width: 500px;
426 padding: 30px;
427 background: #eee;
428 border-radius: 5px;
429}
430
431.blur {
432 position: fixed;
433 top: 0;
434 left: 0;
435 right: 0;
436 bottom: 0;
437 backdrop-filter: blur(15px);
438}
439
440.hidden {
441 display: none;
442}
443
444.search-form input {
445 width: 100%;
446 margin-bottom: 20px;
447 border: 1px solid #ffffff;
448 padding: 5px 10px;
449 border-radius: 3px;
450 outline: none;
451}
452
453.search-form ul {
454 list-style-type: none;
455 padding: 0;
456 margin: 0;
457}
458
459.search-form ul li {
460 margin-bottom: 5px;
461}
462
463/* responsive */ 389/* responsive */
464 390
465@media only screen and (max-width: 960px) { 391@media only screen and (max-width: 960px) {
@@ -507,31 +433,4 @@ audio {
507 .search-trigger { 433 .search-trigger {
508 display: none; 434 display: none;
509 } 435 }
510} 436} \ No newline at end of file
511
512/* light/dark mode */
513
514/*@media (prefers-color-scheme: light) { }
515
516@media (prefers-color-scheme: dark) {
517 body {
518 background: #222;
519 color: #fff;
520 }
521
522 time {
523 color: #fff;
524 }
525
526 a {
527 color: #fff !important;
528 }
529
530 code {
531 color: #222 !important;
532 }
533
534 blockquote:before {
535 background-image: url('/assets/general/alert-dark.svg');
536 }
537}*/