|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548 |
- /*
- # @name: custom.css
- # @creation_date: 2022-09-07
- # @license: The MIT License <https://opensource.org/licenses/MIT>
- # @author: Simon Bowie <ad7588@coventry.ac.uk>
- # @author: Joana Chicau <web@joanachicau.com>
- # @purpose: Custom CSS to override Bootstrap 5 defaults
- # @acknowledgements:
- # Bootstrap 5.1.3: https://getbootstrap.com/
- */
-
- /* NEW STYLE by Joana Chicau */
-
- /* FONTS*/
-
- @font-face {
- font-family: "MetaAccanthis";
- src: url(fonts/MetaAccanthis_regular.ttf) format('truetype');
- font-weight: bold;
- }
-
- @font-face {
- font-family: "MetaAccanthisAlternate";
- src: url(fonts/MetaAccanthisAlternate.ttf) format('truetype');
- font-weight: normal;
- }
-
- @font-face {
- font-family: "Cmunobi";
- src: url(fonts/cmunobi.ttf) format('opentype');
- font-weight: normal;
- }
-
- @font-face {
- font-family: "Compagnon";
- src: url(fonts/Compagnon-Roman.otf) format('opentype');
- font-weight: normal;
- }
-
- @font-face {
- font-family: "Compagnon-B";
- src: url(fonts/Compagnon-Bold.otf) format('opentype');
- font-weight: bolder;
- }
-
- @font-face {
- font-family: "Compagnon-M";
- src: url(fonts/Compagnon-Medium.otf) format('opentype');
- font-weight: bold;
- }
-
- @font-face {
- font-family: "Compagnon-L";
- src: url(fonts/Compagnon-Light.otf) format('opentype');
- font-weight: lighter;
- }
-
- @font-face {
- font-family: "Compagnon-T";
- src: url(fonts/Compagnon-LightItalic.otf) format('opentype');
- font-weight: bold;
- }
-
- :root {
- --color-dark: #0c2039;
- --color-whitish: #fbf9ff;
- --color-lightyellow: #ffff99;
- --color-gray: #edecec;
- --color-blue: #4f1dff;
- --color-pink: #cc285f;
- --title-font: "Compagnon-T"; /* Cmunobi */
- --body-font: "Compagnon";
-
- /*@media screen and (min-width: 320px)*/
- --title-fontsize: calc(2rem + 1.5vw) !important;
- --body-fontsize: calc(14px + 6 * (100vw - 320px) / 1600) !important;
- --button-fontsize: calc(16px + 6 * (100vw - 320px) / 1600) !important;
- --body-fontsize-s: calc(11px + 6 * (100vw - 320px) / 1600) !important;
- }
-
- ::selection {
- background-color: var(--color-lightyellow);
- }
-
- body {
- color: var(--color-dark);
- font-family: var(--body-font) !important;
- font-size: var(--body-fontsize) !important;
- cursor: crosshair;
- background-color: var(--color-whitish) !important;
- }
-
- .background-random{
- background-position: center center;
- background-size: cover;
- background-repeat: no-repeat;
- }
-
- h1, .h1 {
- font-family: var(--title-font) !important;
- font-size: var(--title-fontsize) !important;
- -webkit-text-stroke-width: 0.08rem;
- -webkit-text-stroke-color: black;
- letter-spacing: -0.15rem;
- }
-
- a.h1 {
- text-decoration: none;
- }
-
- a, a:visited {
- cursor: cell;
- color: var(--color-dark) !important;
- }
-
- a:hover {
- text-shadow: 1px 1px 10px var(--color-lightyellow);
- }
-
- p {
- margin-top: 0;
- margin-bottom: 0rem !important;
- }
-
- .contrast {
- color: var(--color-lightyellow) !important;
- -webkit-text-stroke-width: 0.08rem;
- -webkit-text-stroke-color: var(--color-lightyellow) !important;
- }
-
- /* overwrite */
- .p-5 {
- padding: 3.5rem !important;
- }
-
- /* INDEX */
-
- .border, .border-dark {
- border-color: var(--color-dark) !important;
- border-radius: 0.25rem;
- }
-
- .border-glow, hr {
- box-shadow: 1px 1px 4px var(--color-lightyellow);
- }
-
- input#inputsearch, select#searchopt, select#sort, input#submit {
- background: var(--color-dark) !important;
- color: var(--color-lightyellow) !important;
- border: none !important;
- border-radius: 0.25rem !important;
- margin: 0.25rem;
- }
-
- select#searchopt{
- padding: 0.25rem 0.5rem;
- }
-
- input#inputsearch {
- width: 350px;
- }
-
- input#submit:hover {
- box-shadow: 0.25rem 0.25rem 0.5rem var(--color-lightyellow) !important;
- }
-
- .button-search a, .button-search input, .button-search select {
- font-size: var(--button-fontsize) !important;
- text-decoration: none;
- border-radius: 0.25rem;
- padding: 0.25rem 0.5rem;
- }
-
- .random-interferences a {
- color: var(--color-dark) !important;
- background: var(--color-lightyellow);
- }
-
- .random-interferences a:hover {
- box-shadow: 0.25rem 0.25rem 0.5rem var(--color-dark) !important;
- }
-
- .button-hidden-off a {
- color: var(--color-dark) !important;
- background: var(--color-gray);
- text-decoration: none;
- }
-
- .button-hidden-off a:hover {
- box-shadow: 0.25rem 0.25rem 0.5rem var(--color-dark) !important;
- }
-
- .arrow-back {
- position: fixed;
- left: 0;
- margin: 0.5rem;
- }
-
- .action {
- margin: 1.5rem 3rem;
- z-index: 999;
- position: fixed;
- top: 0;
- right: 0;
- }
-
- .action button {
- color: var(--color-pink) !important;
- font-size: 2rem;
- background-color: transparent;
- border: none;
- }
-
- .action button:hover {
- color: var(--color-dark) !important;
- }
-
-
- #random-img-page .action button:hover {
- color: var(--color-whitish) !important;
- }
-
- button#notes, button#notes-operations{
- position: fixed;
- top: 0;
- right:0;
- margin: 0.25rem 0.75rem;
- color: var(--color-whitish) !important;
- background: var(--color-pink) !important;
- border: 0.1rem solid var(--color-pink) !important;
- border-radius: 5rem 3rem;
- height: 2rem;
- width: 2rem;
- line-height: 0.1rem;
- }
-
- button#notes:hover, button#notes-operations:hover {
- color: var(--color-dark) !important;
- }
-
- .info {
- font-family: var(--body-font) !important;
- color: var(--color-pink) !important;
- }
-
- .code {
- line-height: 1.2rem;
- font-size: var(--body-fontsize-s);
- margin: 0.5rem 1rem;
- }
- .operations {
- font-size: var(--body-fontsize-s);
- }
-
- .w-6 {
- max-width: 75%;
- }
-
- .mb-10{
- margin-bottom: 10rem;
- }
-
- .note-veritcal {
- font-size: var(--body-fontsize-s);
- position: absolute;
- right: 0;
- z-index: 200;
- margin: 0.5rem;
- border-radius: 0.25rem;
- padding: 0.15rem 0.25rem;
- writing-mode: vertical-rl;
- text-orientation: mixed;
- }
-
- .note-interference span {
- display: inline-flex;
- background-color: var(--color-lightyellow);
- width: 2rem;
- height: 1rem;
- }
-
- p.about-text {
- margin: 10% ;
- }
-
- .index-row {
- display: flex;
- width: 100%;
- flex-wrap: wrap;
- justify-content: space-evenly;
- flex-direction: row;
- }
-
- /* SEARCH */
-
- .search-links {
- font-size: var(--body-fontsize-s);
- }
-
- .emphasis {
- border-bottom: 0.10rem var(--color-lightyellow) solid;
- }
-
- .search_term {
- background: var(--color-lightyellow);
- }
-
- .ID-link-search {
- background: var(--color-lightyellow);
- }
-
- /* PAGE —> RANDOM IMAGES */
-
- body#random-img-page{
- background-color: var(--color-dark) !important;
- }
-
- #random-img-page .img-fluid {
- flex-shrink: 1;
- flex-basis: 10px;
- height: 50vh;
- box-shadow: 1px 1px 10px #fff6af;
- border-radius: 100%;
- transition: all 1s ease-in-out;
- }
-
- #random-img-page .img-fluid:hover {
- transform: scale(2.0);
- border-radius: 0.15rem;
- transform-origin: top left;
- opacity: 0.85;
- }
-
- /* PAGE —> RANDOM TITLES */
-
- #page-titles a, #page-titles span {
- font-size: 3.5vw; /* should be converted to calc */
- }
-
- .joint {
- padding:0rem 2.5rem ;
- }
-
- /* COMPARE —> 2 RANDOM PATENTS */
-
- .skewY {
- transform: skewY(-20deg);
- }
-
- .compare {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- justify-content: space-between;
- }
-
- .compare > div {
- width: 48%;
- }
-
- /* COMPARE —> 10 ABSTRACTS */
-
- #rdn-abstracts #alltext p::first-letter {
- font-size: 5rem;
- }
-
- #rdn-abstracts #alltext p {
- margin: 0% 20%;
- line-height: 1.8rem;
- font-size: var(--body-fontsize);
- }
-
- /* DATA */
-
- canvas > * {
- font-family: var(--body-font) !important;
- }
-
- .anchordata {
- margin: 1rem 2rem;
- z-index: 999;
- position: fixed;
- right: 0;
- transform: skewY(10deg);
- }
-
- .anchordata a {
- text-decoration: none;
- border-bottom: 0.20rem var(--color-lightyellow) solid;
- }
-
- /* THEMES */
-
- .themes {
- margin: 0% 20%;
- }
-
- .themes h1 {
- text-align: center;
- }
-
- .themes p {
- margin: 2rem 0rem;
- }
-
- .allThemes {
- display: flex;
- width: 100%;
- justify-content: space-around;
- flex-wrap: wrap;
- }
-
- .allThemes a {
- text-decoration: none;
- padding: 3rem 1rem;
- margin: 2rem 0rem;
- border-radius: 10rem;
- background-color: var(--color-lightyellow);
- }
- .allThemes a:hover {
- background-color: var(--color-light-gray);
- }
-
- .themeResults {
- margin: 2rem 0rem;
- width: 100%;
- display: grid;
- grid-column-gap: 0px;
- grid-template-columns: 33.3% 33.3% 33.3%;
- }
-
- .eachthemeResult {
- text-align: center;
- margin: 0.5rem 0rem;
- padding: 1rem;
- border-radius: 50rem;
- background-color: var(--color-lightyellow);
- }
-
- .eachthemeResult a {
- text-decoration: none;
- }
-
- .eachthemeResult p {
- margin: 0rem !important;
- }
-
- .eachthemeResult:nth-child(even) {
- margin: 0.5rem 0.5rem;
- }
-
- .eachthemeResult:hover {
- background-color: var(--color-light-gray);
- }
-
- /* TEXT PAGES LIKE ARCHIVAL CONVERSATIONS AND MAKING OF */
-
- .text {
- margin: 0% 20%;
- }
-
- .text h1 {
- text-align: center;
- }
-
- .text p {
- margin: 2rem 0rem;
- }
-
- .text img {
- width: 100%;
- }
-
- .text h2, .text h3 {
- margin: 2rem 0rem;
- padding: 0rem 1rem;
- }
-
- .text h2 {
- font-size: 2.25 rem;
- background-color: var(--color-lightyellow);
- border-radius: 0.5rem;
- }
-
- .text h3 {
- border-bottom: 0.25rem dashed var(--color-lightyellow);
- }
-
- .text li {
-
- }
-
- code {
- display: flex;
- flex-direction: column;
- flex-wrap: wrap;
- }
-
- p code {
- margin: 1rem 0rem !important;
- }
-
- img + em {
- text-align: center;
- font-size: .8rem;
- }
-
-
- /***************** MOBILE ****************/
-
- @media screen and (min-width:0px) and (max-width: 768px) {
-
- /* overwrite */
- .p-5 {
- padding: 0.5rem !important;
- }
-
-
- /* INDEX SEARCH */
-
- input#inputsearch {
- width: 250px;;
- }
-
- /* RANDOM TITLES */
-
- .action button {
- font-size: 1rem;
- }
-
- /* RANDOM IMAGES */
- #random-img-page .img-fluid:hover {
- transform: none;
- border-radius: 0.15rem;
- opacity: 1;
- }
-
- /* COMPARE —> 2 RANDOM PATENTS */
-
- .compare > div {
- width: 100%;
- }
-
- .col {
- flex: auto !important;
- }
-
- }
|