diff options
author | Marc Coquand <marcc0000@pm.me> | 2023-08-13 11:28:37 +0530 |
---|---|---|
committer | Marc Coquand <marcc0000@pm.me> | 2023-08-13 11:28:37 +0530 |
commit | 22a335754035ae9ee8d1bbdfc65ad83f8bbe834f (patch) | |
tree | fb40a0e860995d9f6655d0520d115346e3e5aa94 /css/main.css | |
download | mccd.space-22a335754035ae9ee8d1bbdfc65ad83f8bbe834f.tar.gz mccd.space-22a335754035ae9ee8d1bbdfc65ad83f8bbe834f.tar.bz2 mccd.space-22a335754035ae9ee8d1bbdfc65ad83f8bbe834f.zip |
initial commit
Diffstat (limited to '')
-rw-r--r-- | css/main.css | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/css/main.css b/css/main.css new file mode 100644 index 0000000..f2f6f84 --- /dev/null +++ b/css/main.css @@ -0,0 +1,33 @@ +.m { + font-family: "Times New Roman", serif; + font-size: 72px; + text-decoration: none; + color: black; +} + +.code { + font-family: monospace; + color: gray; +} + +.link { + padding: 2px; + color: black; +} + +.link:active { + color: white; + background: blue; + text-decoration: none; +} + +body { + padding:0; + margin:0; + overflow:hidden; + font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif; + font-size:14px; + font-weight:400; + line-height:14px +} + |