-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
finally figured out css directories jc
- Loading branch information
Tatikola, Indira
committed
Dec 2, 2023
1 parent
bf854e3
commit 566b753
Showing
17 changed files
with
882 additions
and
9 deletions.
There are no files selected for viewing
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
@charset "utf-8"; | ||
|
||
// Define defaults for each variable. | ||
|
||
$base-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default; | ||
$base-font-size: 16px !default; | ||
$base-font-weight: 400 !default; | ||
$small-font-size: $base-font-size * 0.875 !default; | ||
$base-line-height: 1.5 !default; | ||
|
||
$spacing-unit: 30px !default; | ||
|
||
$text-color: #111 !default; | ||
$background-color: #fdfdfd !default; | ||
$brand-color: #2a7ae2 !default; | ||
|
||
$grey-color: #828282 !default; | ||
$grey-color-light: lighten($grey-color, 40%) !default; | ||
$grey-color-dark: darken($grey-color, 25%) !default; | ||
|
||
$table-text-align: left !default; | ||
|
||
// Width of the content area | ||
$content-width: 800px !default; | ||
|
||
$on-palm: 600px !default; | ||
$on-laptop: 800px !default; | ||
|
||
// Use media queries like this: | ||
// @include media-query($on-palm) { | ||
// .wrapper { | ||
// padding-right: $spacing-unit / 2; | ||
// padding-left: $spacing-unit / 2; | ||
// } | ||
// } | ||
@mixin media-query($device) { | ||
@media screen and (max-width: $device) { | ||
@content; | ||
} | ||
} | ||
|
||
@mixin relative-font-size($ratio) { | ||
font-size: $base-font-size * $ratio; | ||
} | ||
|
||
// Import partials. | ||
@import | ||
"minima/base", | ||
"minima/layout", | ||
"minima/syntax-highlighting" | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,256 @@ | ||
/** | ||
* Reset some basic elements | ||
*/ | ||
body, h1, h2, h3, h4, h5, h6, | ||
p, blockquote, pre, hr, | ||
dl, dd, ol, ul, figure { | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Basic styling | ||
*/ | ||
body { | ||
font: $base-font-weight #{$base-font-size}/#{$base-line-height} $base-font-family; | ||
color: $text-color; | ||
background-color: $background-color; | ||
-webkit-text-size-adjust: 100%; | ||
-webkit-font-feature-settings: "kern" 1; | ||
-moz-font-feature-settings: "kern" 1; | ||
-o-font-feature-settings: "kern" 1; | ||
font-feature-settings: "kern" 1; | ||
font-kerning: normal; | ||
display: flex; | ||
min-height: 100vh; | ||
flex-direction: column; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Set `margin-bottom` to maintain vertical rhythm | ||
*/ | ||
h1, h2, h3, h4, h5, h6, | ||
p, blockquote, pre, | ||
ul, ol, dl, figure, | ||
%vertical-rhythm { | ||
margin-bottom: $spacing-unit / 2; | ||
} | ||
|
||
|
||
|
||
/** | ||
* `main` element | ||
*/ | ||
main { | ||
display: block; /* Default value of `display` of `main` element is 'inline' in IE 11. */ | ||
} | ||
|
||
|
||
|
||
/** | ||
* Images | ||
*/ | ||
img { | ||
width: 300px; | ||
float: left; | ||
margin-right: 20px; | ||
border-radius: 30px; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Figures | ||
*/ | ||
figure > img { | ||
display: block; | ||
} | ||
|
||
figcaption { | ||
font-size: $small-font-size; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Lists | ||
*/ | ||
ul, ol { | ||
margin-left: $spacing-unit; | ||
} | ||
|
||
li { | ||
> ul, | ||
> ol { | ||
margin-bottom: 0; | ||
} | ||
} | ||
|
||
|
||
|
||
/** | ||
* Headings | ||
*/ | ||
h1, h2, h3, h4, h5, h6 { | ||
font-weight: $base-font-weight; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Links | ||
*/ | ||
a { | ||
color: $brand-color; | ||
text-decoration: none; | ||
|
||
&:visited { | ||
color: darken($brand-color, 15%); | ||
} | ||
|
||
&:hover { | ||
color: $text-color; | ||
text-decoration: underline; | ||
} | ||
|
||
.social-media-list &:hover { | ||
text-decoration: none; | ||
|
||
.username { | ||
text-decoration: underline; | ||
} | ||
} | ||
} | ||
|
||
|
||
/** | ||
* Blockquotes | ||
*/ | ||
blockquote { | ||
color: $grey-color; | ||
border-left: 4px solid $grey-color-light; | ||
padding-left: $spacing-unit / 2; | ||
@include relative-font-size(1.125); | ||
letter-spacing: -1px; | ||
font-style: italic; | ||
|
||
> :last-child { | ||
margin-bottom: 0; | ||
} | ||
} | ||
|
||
|
||
|
||
/** | ||
* Code formatting | ||
*/ | ||
pre, | ||
code { | ||
@include relative-font-size(0.9375); | ||
border: 1px solid $grey-color-light; | ||
border-radius: 3px; | ||
background-color: #eef; | ||
} | ||
|
||
code { | ||
padding: 1px 5px; | ||
} | ||
|
||
pre { | ||
padding: 8px 12px; | ||
overflow-x: auto; | ||
|
||
> code { | ||
border: 0; | ||
padding-right: 0; | ||
padding-left: 0; | ||
} | ||
} | ||
|
||
|
||
|
||
/** | ||
* Wrapper | ||
*/ | ||
.wrapper { | ||
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit} * 2)); | ||
max-width: calc(#{$content-width} - (#{$spacing-unit} * 2)); | ||
margin-right: auto; | ||
margin-left: auto; | ||
padding-right: $spacing-unit; | ||
padding-left: $spacing-unit; | ||
@extend %clearfix; | ||
|
||
@include media-query($on-laptop) { | ||
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit})); | ||
max-width: calc(#{$content-width} - (#{$spacing-unit})); | ||
padding-right: $spacing-unit / 2; | ||
padding-left: $spacing-unit / 2; | ||
} | ||
} | ||
|
||
|
||
|
||
/** | ||
* Clearfix | ||
*/ | ||
%clearfix:after { | ||
content: ""; | ||
display: table; | ||
clear: both; | ||
} | ||
|
||
|
||
|
||
/** | ||
* Icons | ||
*/ | ||
|
||
.svg-icon { | ||
width: 16px; | ||
height: 16px; | ||
display: inline-block; | ||
fill: #{$grey-color}; | ||
padding-right: 5px; | ||
vertical-align: text-top; | ||
} | ||
|
||
.social-media-list { | ||
li + li { | ||
padding-top: 5px; | ||
} | ||
} | ||
|
||
|
||
|
||
/** | ||
* Tables | ||
*/ | ||
table { | ||
margin-bottom: $spacing-unit; | ||
width: 100%; | ||
text-align: $table-text-align; | ||
color: lighten($text-color, 18%); | ||
border-collapse: collapse; | ||
border: 1px solid $grey-color-light; | ||
tr { | ||
&:nth-child(even) { | ||
background-color: lighten($grey-color-light, 6%); | ||
} | ||
} | ||
th, td { | ||
padding: ($spacing-unit / 3) ($spacing-unit / 2); | ||
} | ||
th { | ||
background-color: lighten($grey-color-light, 3%); | ||
border: 1px solid darken($grey-color-light, 4%); | ||
border-bottom-color: darken($grey-color-light, 12%); | ||
} | ||
td { | ||
border: 1px solid $grey-color-light; | ||
} | ||
} |
Oops, something went wrong.