-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
666d209
commit 372b868
Showing
3 changed files
with
97 additions
and
2 deletions.
There are no files selected for viewing
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
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
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,87 @@ | ||
/* @theme pascal */ | ||
|
||
/* | ||
============================================ | ||
Created by Paulo Cunha | ||
version: 1.0 | ||
last update: 04.dez.2022 | ||
============================================ | ||
*/ | ||
|
||
/* Importing COLOR SCHEMA */ | ||
|
||
@import "default"; | ||
@import "schema"; | ||
@import "structure"; | ||
|
||
/***************** COMMON STRUCTURE **********************/ | ||
|
||
:root { | ||
font-family: 'Fira Sans Light'; | ||
font-weight: initial; | ||
--italic-background-color : rgba(214, 25, 66, 0.144); | ||
--italic-background-color : rgba(8, 206, 255, 0.3); | ||
--italic-background-color : rgba(8, 140, 255, 0.236); | ||
background-color: rgb(238, 244, 237); | ||
} | ||
|
||
h1 { | ||
color:rgb(23, 86, 118); | ||
color:rgb(11, 37, 69); | ||
color:rgb(53, 80, 112); | ||
color:rgb(53, 80, 112); | ||
padding-bottom: 2mm; | ||
margin-bottom: 12mm; | ||
} | ||
|
||
p { | ||
font-size: 26pt; | ||
font-weight: 600; | ||
color:rgba(78, 78, 80, 0.814) | ||
} | ||
|
||
section.titlepage .title { | ||
border-bottom: 1px solid orangered; | ||
} | ||
|
||
|
||
section.cite { | ||
--strong-color : rgba(255, 5, 5, 0.795); | ||
} | ||
|
||
section.titlepage .author, | ||
section.titlepage .date, | ||
section.titlepage .organization { | ||
text-align: left; | ||
} | ||
|
||
section strong { | ||
color:rgb(141, 169, 196) ; | ||
color:rgba(23, 86, 118) ; | ||
color:rgb(181, 101, 118) ; | ||
color:rgb(186, 50, 79) ; | ||
color:rgb(229, 107, 111) ; | ||
padding-left: 1px; | ||
padding-right: 1px; | ||
font-weight: 600; | ||
} | ||
|
||
section.transition em{ | ||
background-color: rgb(251, 255, 0) !important; | ||
} | ||
|
||
|
||
section.transition strong { | ||
color: rgba(230, 250, 6, 0.905); | ||
color: rgba(207, 235, 121, 0.964); | ||
font-weight: 1000; | ||
text-shadow: 2px 2px 10px rgb(101, 45, 3); | ||
} | ||
|
||
|
||
section.transition2 strong { | ||
|
||
color: rgb(10, 100, 235); | ||
color: rgb(161, 240, 3); | ||
|
||
} |