Mercurial > web
annotate style.css @ 19:53d58f906e0a
Update index.html
committer: GitHub <noreply@github.com>
author | Paper <37962225+mrpapersonic@users.noreply.github.com> |
---|---|
date | Fri, 03 Sep 2021 23:51:45 -0400 |
parents | 710525605e4e |
children |
rev | line source |
---|---|
14 | 1 body { |
2 text-align: center; | |
3 background-size: 100% auto; | |
4 background-position: top center; | |
5 background-repeat: repeat; | |
6 image-rendering: pixelated; | |
7 text-shadow: -1px -1px 0px #000000, 1px 1px 0px #000000, -1px 1px 0px #000000, 1px -1px 0px #000000, 2px 2px 2px rgba(0, 0, 0, 0.5); | |
16
710525605e4e
change cursive to sans-serif; add chalkboard font for cringe iphones
Paper <mrpapersonic@gmail.com>
parents:
14
diff
changeset
|
8 font-family: "Comic Sans MS", "Comic Sans", "Chalkboard", "ChalkboardSE-Regular", sans-serif; |
14 | 9 color: white; |
10 } | |
11 p { | |
12 font-size: 20px; | |
13 } | |
14 h1 { | |
15 font-size: 40px; | |
16 } | |
17 a { | |
18 color: tomato; | |
19 } | |
20 img { | |
21 box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); | |
22 } | |
23 input[type=submit] { | |
24 background-color: white; | |
25 color: black; | |
26 border: 1px solid black; | |
27 padding: 1px 7px; | |
28 font-family: "Comic Sans MS", "Comic Sans", cursive; | |
29 box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5); | |
13 | 30 } |