Compare commits

...

2 Commits

Author SHA1 Message Date
bumi 494aae0a06 Update rice box 2020-10-26 11:00:50 +01:00
bumi f066978374 Use a default font and not a font from google
No need to load data from google. If someone wants a special font a custom
website can be used.
2020-10-26 10:59:56 +01:00
2 changed files with 31 additions and 32 deletions

View File

@ -3,7 +3,6 @@
<head>
<meta charset="UTF-8">
<title>⚡ Send me some Sats</title>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@400;700&display=swap" rel="stylesheet" />
<style>
html {
width: 100%;
@ -12,7 +11,7 @@
}
body {
background-image: linear-gradient(60deg, #3d3393 0%, #2b76b9 37%, #2cacd1 65%, #35eb93 100%);
font-family: 'Source Code Pro', monospace;
font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}
.wrapper {
font-weight: 400;

File diff suppressed because one or more lines are too long