From caf187f184bdea6f246877dad8b4945e0ce9622c Mon Sep 17 00:00:00 2001 From: Martial Simon Date: Mon, 15 Jan 2024 23:18:07 +0200 Subject: init: second initial commit helpmeplease --- index.css | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 index.css (limited to 'index.css') diff --git a/index.css b/index.css new file mode 100644 index 0000000..9b227ac --- /dev/null +++ b/index.css @@ -0,0 +1,54 @@ +body { + /* Background colour is matched to the image for cleaner loading */ + background-color: #9097a3; + background-image: url("images/pkz50037.jpg"); + color: pink; + margin: 60px; + font-family: monospace; +} + +h1 { + text-decoration: underline; +} + +h2 { + font-family: tintin; +} + +img { + /* Ensured images don't go oversize */ + max-width: 80%; +} + +a { + color: orange; +} + +p { + color: white; + font-size: large; + padding-left: 10px; +} + +#wrapper { + /* This bit styles the content area and gives it a blur */ + background-color: #2030e5; + box-shadow: 0px 0px 40px 40px #2030e5; + padding: 10px; + /* This bit makes it centred on big screens */ + max-width: 900px; + margin: auto; +} + +.example { + background-color: rgb(46, 72, 51); + border: 2px double rgb(232, 219, 39); + border-radius: 25px; + padding: 10px; + margin: 5px; +} + +@font-face { + font-family: tintin; + src: url(fonts/tintin_talking.ttf); +} \ No newline at end of file -- cgit v1.2.3