Skip to content

Commit

Permalink
y
Browse files Browse the repository at this point in the history
  • Loading branch information
allanspadini committed Apr 14, 2024
1 parent 226daea commit 8ba420d
Show file tree
Hide file tree
Showing 8 changed files with 113 additions and 11 deletions.
4 changes: 2 additions & 2 deletions _quarto.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ website:

format:
html:
theme: default
theme: tema.scss

css: styles.css




1 change: 0 additions & 1 deletion docs/about.html
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@
</script>


<link rel="stylesheet" href="styles.css">
</head>

<body class="nav-fixed fullcontent">
Expand Down
5 changes: 2 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@
};
</script>

<link rel="stylesheet" href="styles.css">
</head>

<body class="nav-fixed">
Expand Down Expand Up @@ -262,7 +261,7 @@ <h1 class="title">Posts</h1>

<div class="quarto-listing quarto-listing-container-default" id="listing-listing">
<div class="list quarto-listing-default">
<div class="quarto-post image-right" data-index="0" data-categories="notícias,sismologia" data-listing-date-sort="1690340400000" data-listing-file-modified-sort="1713096485671" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="3" data-listing-word-count-sort="547">
<div class="quarto-post image-right" data-index="0" data-categories="notícias,sismologia" data-listing-date-sort="1690340400000" data-listing-file-modified-sort="1713096929501" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="3" data-listing-word-count-sort="547">
<div class="thumbnail">
<p><a href="./posts/index2.html" class="no-external"></a></p><a href="./posts/index2.html" class="no-external">
<p><img src="https://cdn.pixabay.com/photo/2017/02/26/04/47/cracks-2099531_1280.jpg" class="thumbnail-image"></p>
Expand Down Expand Up @@ -298,7 +297,7 @@ <h3 class="no-anchor listing-title">
</a>
</div>
</div>
<div class="quarto-post image-right" data-index="1" data-categories="notícias" data-listing-date-sort="1689735600000" data-listing-file-modified-sort="1713094959879" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="5" data-listing-word-count-sort="941">
<div class="quarto-post image-right" data-index="1" data-categories="notícias" data-listing-date-sort="1689735600000" data-listing-file-modified-sort="1713097083912" data-listing-date-modified-sort="NaN" data-listing-reading-time-sort="5" data-listing-word-count-sort="941">
<div class="thumbnail">
<p><a href="./posts/index.html" class="no-external"></a></p><a href="./posts/index.html" class="no-external">
<p><img src="./posts/image.jfif" class="thumbnail-image"></p>
Expand Down
1 change: 0 additions & 1 deletion docs/posts/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
</script>


<link rel="stylesheet" href="../styles.css">
</head>

<body class="nav-fixed fullcontent">
Expand Down
1 change: 0 additions & 1 deletion docs/posts/index2.html
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@
</script>


<link rel="stylesheet" href="../styles.css">
</head>

<body class="nav-fixed fullcontent">
Expand Down
4 changes: 2 additions & 2 deletions docs/site_libs/bootstrap/bootstrap.min.css

Large diffs are not rendered by default.

1 change: 0 additions & 1 deletion docs/styles.css

This file was deleted.

107 changes: 107 additions & 0 deletions tema.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
/*-- scss:defaults --*/

$theme: "cosmo" !default;

//
// Color system
//

$white: #fff !default;
$gray-100: #f8f9fa !default;
$gray-200: #e9ecef !default;
$gray-300: #dee2e6 !default;
$gray-400: #ced4da !default;
$gray-500: #adb5bd !default;
$gray-600: #868e96 !default;
$gray-700: #495057 !default;
$gray-800: #373a3c !default;
$gray-900: #212529 !default;
$black: #000 !default;

$blue: #2780e3 !default;
$indigo: #6610f2 !default;
$purple: #613d7c !default;
$pink: #e83e8c !default;
$red: #ff0039 !default;
$orange: #f0ad4e !default;
$yellow: #fff718 !default;
$green: #3fb618 !default;
$teal: #20c997 !default;
$cyan: #9954bb !default;

$primary: $blue !default;
$secondary: $gray-800 !default;
$success: $green !default;
$info: $cyan !default;
$warning: $yellow !default;
$danger: $red !default;
$light: $gray-100 !default;
$dark: $gray-800 !default;

$min-contrast-ratio: 2.6 !default;

// Options

$enable-rounded: false !default;

// Body

$body-color: $black !default;

// Fonts

// stylelint-disable-next-line value-keyword-case
$font-family-sans-serif: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol" !default;
$headings-font-weight: 400 !default;

// Navbar

$navbar-dark-hover-color: rgba($white, 1) !default;
$navbar-light-hover-color: rgba($black, .9) !default;
$navbar-bg:$yellow;

// Alerts

$alert-border-width: 0 !default;

// Progress bars

$progress-height: .5rem !default;



/*-- scss:rules --*/


// Variables

$web-font-path: "https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;700&display=swap" !default;
@if $web-font-path {
@import url($web-font-path);
}

// Typography

body {
-webkit-font-smoothing: antialiased;
}

// Indicators

.badge {
&.bg-light {
color: $dark;
}
}

// Progress bars

.progress {
@include box-shadow(none);

.progress-bar {
font-size: 8px;
line-height: 8px;
}
}

0 comments on commit 8ba420d

Please sign in to comment.