git ssb

0+

Zach! / coolguy.v2



Commit d7ce7cc5e43c469d72f4cbb9c869348b9f91d0d0

Remove extra stylesheet added in error

Zach! committed on 3/10/2019, 7:19:11 AM
Parent: 912486ae255e4dc3f890d7b4183fe03612ac699b

Files changed

aesthetic/stylesheets/colors-and-fonts.csschanged
aesthetic/stylesheets/main.csschanged
question.htmlchanged
aesthetic/stylesheets/colors-and-fonts.cssView
@@ -9,13 +9,13 @@
99 ************************************************************/
1010
1111 :root {
1212 --primary_bg: #fffcb6;
13- --heading_color:#745aa4;
13+ --heading_color:lavenderblush;
1414 --border_color: #87c5d4;
1515 --link-symbol_color: #FFBD00;
1616 --page-divider_color: #745aa4;
17- --heading_bg: #fffdd2;
17+ --heading_bg: #745aa4;
1818 --top_border: lavender;
1919 --primary_color: #155577;
2020 --dotted-pattern_bg: gray;
2121 --body-text: 'IBM Plex Serif';
aesthetic/stylesheets/main.cssView
@@ -368,17 +368,8 @@
368368 background-position: 11px 11px, 14px 14px;
369369 z-index: -1
370370 }
371371
372-#question-page {
373- background: var(--primary_bg);
374- color: var(--primary_color);
375-}
376-
377-#question-form {
378-
379-}
380-
381372 /* Updates */
382373
383374 #updates {
384375 max-width: 960px;
@@ -483,487 +474,10 @@
483474 }
484475
485476 .thoughts strong{
486477 border-bottom: 1px solid yellow;
487-}/************************************************************
488- * Coolguy.Website STYLES!!! *
489- *-----------------------------------------------------------*
490- * My main stylesheet, and the reason why coolguy looks *
491- * sooooo gooooooood. I was listening to a lot of *
492- * gothboiclique whie writing this, so the site might end *
493- * up more emo teen than intended. *
494- * *
495- ************************************************************/
496-
497-/*
498-I have another file called colors.css that sets up color
499-variables for things like background, font color, accent color
500-and so on. This lets me be able to change the palette of the site
501-quickly. So if you see something in this file like:
502-background: var(--primary_bg) it means I'm using a variable called
503---primary_bg which I defined in that colors.css. So check it out!
504-*/
505-
506-/* These are some global values that I want to apply to the elements themselves */
507-body, html {
508- padding: 0;
509- margin: 0;
510- box-sizing: border-box;
511478 }
512479
513-p {
514- line-height: 1.3em;
515-}
516-
517-li {
518- line-height: 1.2em;
519- margin-bottom: 1.3em;
520-}
521-
522-a {
523- color: var(--link-color);
524- text-decoration: none;
525-}
526-
527-a:hover {
528- font-weight: 200;
529-}
530-
531-a:after {
532- content: "⬫";
533- margin-left: 0.1em;
534- color: var(--link-symbol_color);
535-}
536-
537-figure {
538- max-width: 950px;
539- margin: auto;
540- margin-bottom: 3em;
541-}
542-figure img {
543- max-width: 90%;
544-}
545-
546-figcaption {
547- border-top: 1px solid var(--heading-color);
548- border-bottom: 1px solid var(--heading-color);
549- padding: 0.5em;
550- max-width: 500px;
551- margin: auto;
552- margin-bottom: 3em;
553-}
554-@media (max-width: 667px) {
555- figcaption {
556- margin: 0.5em;
557- }
558-}
559-
560-figcaption p{
561- margin-top: 0.5em;
562- font-size: 0.65em;
563- font-style: italic;
564-}
565-
566-section {
567- padding: 3em;
568-}
569-@media (max-width: 667px) {
570- section {
571- padding: 1em;
572- }
573-}
574-
575-/*
576-These are some ID and Class specific values. Id's are represented as #name and class .name
577-So #greetings corresponds to <section id="greetings"></section> on my home page,
578-and #greetings h2 corresponds to the <h2> tag inside the <section id='greetings>
579-and #greetings .words corresponds to anything with the class words in the #greetings section (like <div class='words'>)
580-*/
581-
582-#greetings {
583- display: grid;
584- grid-template-areas:
585- "header header header"
586- "words words portrait"
587- "words words portrait"
588- "flower flower portrait";
589- max-width: 1200px;
590- margin: auto;
591-}
592-/* Media queries adjust properties of your CSS based on the size of
593- the browser viewing it. Our first query would be for ipads or smaller
594- browsers, the next is for phones.
595-*/
596-@media (max-width: 1100px) {
597- #greetings {
598- grid-template-areas:
599- "header header header"
600- " words words portrait"
601- "flower flower flower";
602- }
603- #greetings .flower-garden {
604- align-items: center;
605- justify-content: center !important;
606- }
607-}
608-@media (max-width: 667px) {
609- #greetings {
610- grid-template-areas:
611- "header"
612- "portrait"
613- "words"
614- "flower";
615- }
616-}
617-
618-#greetings h2 {
619- font-family: var(--heading-text);
620- font-size: 1.3em;
621- font-weight: 500;
622- grid-area: header;
623- letter-spacing: 0.2em;
624-}
625-
626-#greetings .words {
627- grid-area: words
628-}
629-
630-#greetings aside {
631- font-weight: 300;
632- font-size: 0.8em;
633- letter-spacing: 0.05em;
634- font-style: italic;
635-}
636-
637-#greetings .portrait {
638- grid-area: portrait;
639- align-self: end;
640-}
641-
642-
643-#greetings .portrait img{
644- max-width: 100%;
645-}
646-
647-#greetings .flower-garden {
648- grid-area: flower;
649- display: flex;
650- justify-content: end;
651- align-items: baseline;
652-}
653-
654-#greetings .flower-garden img {
655- max-width: 33%;
656-}
657-
658-#home {
659- background: var(--primary_bg);
660- color: var(--primary_color);
661- font-size: var(--standard-size);
662- font-family: var(--body-text);
663-}
664-
665-#home header {
666- background: lavenderblush;
667- padding: 2em 2em 0.1em 1em;
668-}
669-
670-#home header h1 {
671- margin-top: 0;
672- padding: 0;
673- font-family: var(--title-text);
674- color: var(--heading-color);
675- font-size: 8vw;
676- margin-bottom: 0;
677- padding-bottom: 0;
678-}
679-@media (max-width: 667px) {
680- #home header h1 {
681- font-size: 11vw;
682- }
683-}
684-
685-#home header .subtitle {
686- margin-top: -0.75em;
687- font-size: 1.3em;
688- font-weight: 200;
689- padding-left: 1em;
690-}
691-@media (max-width: 667px) {
692- #home header .subtitle {
693- font-size: 1em;
694- margin-top: -0.5em;
695- }
696-}
697-
698-#invocation {
699- position: absolute;
700- top: 0;
701- right: 0;
702- padding: 0.75em;
703- font-size: 0.5em;
704- font-weight: 300;
705- font-style: italic;
706-}
707-
708-/*
709- We are applying the invocation to a quote tag (<q>).
710- Browsers add in quote marks to these tags,
711- but I don't want them, so we are removing them here.
712-*/
713-#invocation:before {
714- content: none;
715-}
716-#invocation:after {
717- content: none;
718-}
719-
720-.daiso-card {
721- /* I got these polka dots from a cool css pattern site: https://leaverou.github.io/css3patterns/#polka-dot */
722- background-color: var(--heading-color);
723- background-image: radial-gradient(white 15%, transparent 16%),
724- radial-gradient(white 15%, transparent 16%);
725- background-size: 8px 8px;
726- background-position: 0 0, 20px 20px;
727- border-radius: 5px;
728- max-width: 500px;
729- margin: auto;
730- margin-bottom: 3em;
731- padding: 0.25em;
732-}
733-@media (max-width: 667px) {
734- .daiso-card{
735- margin: 1em;
736- }
737-}
738-
739-.daiso-page {
740- background: lavenderblush;
741- width: 100%;
742- display: flex;
743- flex-direction: column;
744- justify-content: center;
745- align-items: center;
746- border-radius: 5px;
747-}
748-
749-.daiso-page h2{
750- font-family: var(--title-text);
751- margin-bottom: 0;
752- text-align: left;
753- width: 100%;
754- letter-spacing: 0.25em;
755- padding-left: 1.5em;
756-}
757-
758-.daiso-page ul {
759- margin-top: 0.5em;
760- display: grid;
761- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
762- grid-gap: 0.25em 0.25em;
763- padding: 1em;
764- list-style-type: none;
765- margin-bottom: 0;
766-}
767-
768-#directory {
769- border-top: 3px dotted var(--page-divider_color);
770- border-bottom: 3px dotted var(--page-divider_color);
771- box-shadow: inset 0 -1px 0 0 var(--page-divider_color), inset 0 1px 0 0 var(--page-divider_color), 0 1px 0 0 var(--page-divider_color), 0 -1px 0 0 var(--page-divider_color);
772-}
773-
774-#directory h2 {
775- max-width: 920px;
776- text-align: center;
777- margin: auto;
778- margin-bottom: 1em;
779- font-family: var(--title-text);
780- font-size: 1.8em;
781- letter-spacing: 0.25em;
782- padding: 0.25em;
783- color: lavenderblush;
784- background: var(--heading-color);
785-}
786-
787-#directory ul {
788- list-style-type: none;
789- max-width: 940px;
790- display: grid;
791- grid-gap: 10px;
792- margin: 0 auto;
793- grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
794- grid-auto-rows: repeat(auto-fit, minmax(50px, auto));
795- padding: 0;
796-}
797-
798-.directory-item a {
799- background: white;
800- padding: 1em;
801- position: relative;
802- display: flex;
803- flex-direction: column;
804- border: 1px solid lightgray;
805- z-index: 1;
806-}
807-
808-.directory-item strong {
809- margin-bottom: 1em;
810- line-height: 1em;
811- font-size: 1.2em;
812- margin-bottom: 1.5em;
813- font-weight: 300;
814- font-family: var(--secondary-heading-text);
815-}
816-
817-.directory-item a:after {
818- content: none;
819-}
820-
821-@media (min-width: 800px) {
822-#directory li:last-of-type {
823- grid-column-start: 2;
824-}
825-}
826-
827-.directory-item .description {
828- color: var(--primary_color);
829- margin-bottom: 1.5em;
830-}
831-
832-/* .tall is a hack (or maybe proper usage?!) to get all the boxes to line up nice.
833- What this means is that if I have a new section whose lines are real long,
834- then I need to add this class to it. I feel this is fine, though, since I
835- am not adding new items all that much, and so I don't need this to be all
836- calculated and dynamic, and I can keep the site JS-free.
837-*/
838-
839-#directory .tall {
840- grid-row-end: span 2;
841-}
842-
843-
844-.dotted-pattern {
845- position: absolute;
846- height: 102%;
847- width: 100%;
848- top: 7px;
849- right: 7px;
850- background-color:none;
851- background-image: radial-gradient(var(--dotted-pattern_bg) 15%, transparent 16%),
852- radial-gradient(var(--dotted-pattern_bg) 15%, transparent 16%);
853- background-size: 05px 07px;
854- background-position: 11px 11px, 14px 14px;
855- z-index: -1
856-}
857-
858-/* Updates */
859-
860-#updates {
861- max-width: 960px;
862- margin: auto;
863- margin-top: 3em;
864- background: white;
865- padding: 0;
866-}
867-
868-@media (max-width: 667px) {
869- #updates {
870- margin: 0.5em;
871- margin-top: 3em;
872- }
873-}
874-
875-#updates h2 {
876- width: 100%;
877- margin: 0;
878- background: var(--heading-color);
879- color: lavenderblush;
880- text-align: center;
881- font-family: var(--title-text);
882-}
883-
884-#updates ul {
885- margin: 0.75em;
886- padding: 3em;
887- background-image: radial-gradient(lightgray 15%, transparent 16%),
888- radial-gradient(lightgray 15%, transparent 16%);
889- background-size: 05px 07px;
890- background-position: 11px 11px, 14px 14px;
891- list-style-type: circle;
892-}
893-
894-/* This lets me set different colors for the dotted pattern
895- And heading for each item in my directory, while being able to change
896- their colors in just one spot.
897-*/
898-.friends {
899- --dotted-pattern_bg: red;
900-}
901-.friends strong {
902- border-bottom: 1px solid red;
903-}
904-
905-.boardgames{
906- --dotted-pattern_bg: red;
907-}
908-.boardgames strong {
909- border-bottom: 1px solid red;
910-}
911-
912-.solarpunk-magic {
913- --dotted-pattern_bg: purple;
914-}
915-
916-.solarpunk-magic strong {
917- border-bottom: 1px solid purple;
918-}
919-
920-.computer-thoughts {
921- --dotted-pattern_bg: green;
922-}
923-.computer-thoughts strong{
924- border-bottom: 1px solid green;
925-}
926-
927-.projects {
928- --dotted-pattern_bg: orange;
929-}
930-
931-.projects strong {
932- border-bottom: 1px solid orange;
933-}
934-
935-.calendar {
936- --dotted-pattern_bg: gray;
937-}
938-
939-.calendar strong{
940- border-bottom: 1px solid gray;
941-}
942-
943-.movies {
944- --dotted-pattern_bg: blue;
945-}
946-.movies strong{
947- border-bottom: 1px solid blue;
948-}
949-
950-.links {
951- --dotted-pattern_bg: violet;
952-}
953-
954-.links strong {
955- border-bottom: 1px solid violet;
956-}
957-
958-.thoughts {
959- --dotted-pattern_bg: yellow;
960-}
961-
962-.thoughts strong{
963- border-bottom: 1px solid yellow;
964-}
965-
966480 .diary {
967481 --dotted-pattern_bg: cornflowerblue;
968482 }
969483
@@ -977,23 +491,4 @@
977491
978492 .writing strong{
979493 border-bottom: 1px solid salmon;
980494 }
981-
982-.diary {
983- --dotted-pattern_bg: cornflowerblue;
984-}
985-
986-.diary strong {
987- border-bottom: 1px solid cornflowerblue;
988-}
989-
990-.writing {
991- --dotted-pattern_bg: salmon;
992-}
993-
994-.writing strong{
995- border-bottom: 1px solid salmon;
996-}
997-
998-
999-
question.htmlView
@@ -1,28 +1,28 @@
11 <!doctype HTML>
2-<!--
3- ********************************************************************************
4- * Ask A Question Source Code!! *
5- *------------------------------------------------------------------------------*
6- * *
7- * This is a new one and I'm a little worried that no one will ask one, *
8- * and then i'll have this big empty page (kind of the same worry of keeping *
9- * a calendar and realizing you got no events going on). Though in the *
10- * calendar's case, I just keep forgetting to update it, but am v. happy it is *
11- * there, so it'll likely be the same for these questions! *
12- * *
13- * I am writing this at the library, the week before scuttlecamp. I'd been *
14- * up my own ass these last couple of months to really feel how exciting *
15- * scuttlecamp would be, and now I'm buzzing with excitement and meeting all *
16- * of these people who've only been avatars and kind words before. I just *
17- * finished the manga Orange (like finished it twenty minutes ago) and now *
18- * I'm a little loopy and weepy and appreciative of friends. Here's what *
19- * I, the webmaster of this site, say: stop reading this code! Go read *
20- * Orange instead! Then call and hug your family and friends! Then come back *
21- * to this code, as you'll be truly read to understand it. *
22- * *
23- ********************************************************************************
24--->
2+
3+<!--****************************************************************************
4+* Ask A Question Source Code!! *
5+*------------------------------------------------------------------------------*
6+* *
7+* This is a new one and I'm a little worried that no one will ask one, *
8+* and then i'll have this big empty page (kind of the same worry of keeping *
9+* a calendar and realizing you got no events going on). Though in the *
10+* calendar's case, I just keep forgetting to update it, but am v. happy it is *
11+* there, so it'll likely be the same for these questions! *
12+* *
13+* I am writing this at the library, the week before scuttlecamp. I'd been *
14+* up my own ass these last couple of months to really feel how exciting *
15+* scuttlecamp would be, and now I'm buzzing with excitement and meeting all *
16+* of these people who've only been avatars and kind words before. I just *
17+* finished the manga Orange (like finished it twenty minutes ago) and now *
18+* I'm a little loopy and weepy and appreciative of friends. Here's what *
19+* I, the webmaster of this site, say: stop reading this code! Go read *
20+* Orange instead! Then call and hug your family and friends! Then come back *
21+* to this code, as you'll be truly read to understand it. *
22+* *
23+**************************************************************************** -->
24+
2525 <html> <!-- Helpful Annotations for making a head tag! -->
2626 <!-- Great link to learn more: https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/The_head_metadata_in_HTML -->
2727 <head>
2828 <!-- What will Show up on your browser window. -->
@@ -70,23 +70,29 @@
7070 </section>
7171 <section id="question-form" class="daiso-card">
7272 <form class="daiso-page" method="post" action="https://www.briskforms.com/go/4732d0518d78526695008d16e7ee2012">
7373 <label for="question">Your Question:</label>
74- <textarea id="question" name="question" required value="I was wondering..."></textarea>
74+ <textarea id="question" name="question"required placeholder="I was wondering"></textarea>
7575 <fieldset id="querent">
76- <legend>You, Querent</legend>
77- <p>These are optional (though if you want an email reply, I'll need to know your address of course.)</p>
76+ <legend>You: Querent</legend>
77+ <aside>These are optional (But i'll need your address if you want me to email you.)</aside>
7878 <label for="querant">What's your name?</label>
7979 <input type="text" id="querant" name="querant">
8080 <label for="email">What's the best email to get back to you?</label>
8181 <input type="text" id="email" name="email">
8282 </fieldset>
8383 <fieldset id="reply-pref">
8484 <legend>How would you like me to reply?</legend>
85- <input type="radio" name="reply-pref" id="email"> <label for="email">By Email</label>
86- <input type="radio" name="reply-pref" id="webpage"> <label for="webpage">On this webpage.</label>
87- <input type="radio" name="reply-pref" id="email-webpage"> <label for="email-webpage">By email and on this webpage.</label>
88- <input type="radio" name="reply-pref" id="no-reply"> <label for="no-reply">Please don't reply. I just wanted to ask.</label>
85+ <span><input type="radio" name="reply-pref" id="email" value="email"> <label for="email">By Email</label></span>
86+ <span>
87+ <input type="radio" name="reply-pref" id="webpage" value="webpage"> <label for="webpage">On this webpage.</label>
88+ </span>
89+ <span>
90+ <input type="radio" name="reply-pref" id="email-webpage"> <label for="email-webpage">By email and on this webpage.</label>
91+ </span>
92+ <span>
93+ <input type="radio" name="reply-pref" id="no-reply"> <label for="no-reply">Please don't reply. I just wanted to ask.</label>
94+ </span>
8995 </fieldset>
9096 <input type="submit" name="submit" value="Submit!">
9197 </form>
9298 </section>

Built with git-ssb-web