summaryrefslogtreecommitdiff
path: root/design/sass/_comments.scss
diff options
context:
space:
mode:
authorlxf <sng@luxagraf.net>2021-11-06 09:44:22 -0400
committerlxf <sng@luxagraf.net>2021-11-06 09:44:22 -0400
commit2c291d0bdfad485f3e7605d6b39433894e75a687 (patch)
treef9a73a0e1cbcd51d7ccc0fb99296049c66babe16 /design/sass/_comments.scss
parentd9f51299809bfb6b3ac589b7c42016d0ef240299 (diff)
moved design to bak because I don't need to access it much
Diffstat (limited to 'design/sass/_comments.scss')
-rw-r--r--design/sass/_comments.scss125
1 files changed, 0 insertions, 125 deletions
diff --git a/design/sass/_comments.scss b/design/sass/_comments.scss
deleted file mode 100644
index 4807397..0000000
--- a/design/sass/_comments.scss
+++ /dev/null
@@ -1,125 +0,0 @@
-//### COMMENTS AND FORMS ###
-.comments--wrapper {
- @include constrain_narrow();
- @include fancy_sans;
- text-align: left;
- margin-top: -2em;
-}
-.comments--header {
- @include constrain_narrow();
- line-height: 6em;
- @include fontsize(16);
- font-style: italic;
- margin-top: 2em;
-}
-.comment {
- margin-top: 2.5em;
- margin-bottom: 2.5em;
- padding-top: 3rem;
- &:first-child {
- margin-top: none;
- }
- &:after {
- display: block;
- content: "";
- margin-top: 3em;
- height: 1px;
- width: 100%;
- background: -webkit-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
- background: -moz-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
- background: -o-linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
- background: linear-gradient(left, rgba(0,0,0,0),rgba(0,0,0,0.1),rgba(0,0,0,0));
- }
- &:last-child:after {
- display: none;
- }
-}
-.comment--head, .comment--body {
- @include breakpoint(alpha) {
- margin-left: 80px;
- margin-top: -1rem;
- }
-}
-.comment--head {
- margin-bottom: 1rem;
-}
-.comment--body {
- margin-bottom: 3em;
- @include fontsize(22);
- font-family: $fancy_serif;
- hr {
- width: 20%;
- overflow: visible;
- padding: 0;
- border: none;
- border-top: 2px solid #d4d4d4;
- color: #efefef;
- background: none;
- }
-}
-.who {
- @include fontsize(22);
-}
-.when {
- @include fontsize(15);
- color: #999;
- margin-left: 1em;
-}
-.gravatar {
- border: 2px $brown solid;
- background: transparent;
- max-width: 100%;
- padding: 0;
- float: left;
- margin-top: -7px;
- margin-right: 8px;
- @include breakpoint(alpha) {
- margin-right: 0;
- }
-}
-.comment--form--wrapper {
- @include constrain_narrow();
- p {
- font-family: $fancy_serif;
- }
- input[type="submit"] {
- display: inline-block;
- @include fancy_sans;
- @include fontsize(14);
- font-weight: 600;
- width: auto;
- text-transform: uppercase;
- padding: 8px 12px 7px;
- }
- .submit {
- @extend %clearfix;
- display: block;
- margin-right: 0;
- }
- .submit .btn {
- float: right;
- &:first-of-type {
- margin-left: 5px;
- }
- }
- label {
- left: 1.2rem !important;
- }
-}
-.comment-form-border{
- border-top: 3px double #efefef;
-}
-.comment--form--header {
- margin-top: 2em;
- .hed {
- @include fontsize(28);
- margin: 0;
- }
- .subhed {
- font-style: italic;
- @include fontsize(20);
- line-height: 1.25;
- margin-top: 0;
- margin-bottom: 0;
- }
-}