PHP Classes

File: examples/css/style.css

Recommend this page to a friend!
  Classes of Barton Phillips   Simple Site Class   examples/css/style.css   Download  
File: examples/css/style.css
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple Site Class
Simple Site Class
Author: By
Last change:
Date: 3 months ago
Size: 1,344 bytes
 

Contents

Class file image Download
/* Barton Phillips CSS */ /* This file is used by bartonphillips.com and by bartonlp.com */ /* This is a 'Reset' css */ /* :root If you have another css file with the same var but different values that will take precidence (just like everything else) */ :root { --blpBodyBgColor: hsla(144, 100%, 95%, 0.6); /*#e6fff0;*/ --blpHitcntrBgColor: #F5DEB3; --blpHitcntrBorder: 8px ridge yellow; --blpHitcntrColor: rgb(123, 16, 66); --blpFontSize: calc(16px + .3vw); } @font-face { font-family: 'FontFace'; src: url(../fonts/IBMPlexSans-Regular.otf); } * { box-sizing: border-box; } /* Get RID of the blue border around the following */ /* If you really want it add it in your css! */ input:focus, button:focus, a:focus, textarea:focus { outline: none; } html { margin: auto; font-size: var(--blpFontSize); } body { background-color: var(--blpBodyBgColor); /*#e6fff0;*/ font-family: 'FontFace'; padding: .5rem; } header { text-align: center; } footer { text-align: center; } .center { text-align: center; } ul { line-height: 150%; } /* for BIG screens */ @media (min-width: 1600px) { html { font-size: calc(22px + .4vw); } } /* BLP 2021-10-13 -- Need to add this at some point @media (hover: none) and (pointer: coarse) { } @media (hover: hover) and (pointer: fine) and (max-width: 1000px) { } */