aboutsummaryrefslogtreecommitdiffhomepage
path: root/style.css
diff options
context:
space:
mode:
authorIgor Tolmachev <me@igorek.dev>2024-04-23 21:47:58 +0900
committerIgor Tolmachev <me@igorek.dev>2024-04-23 22:06:46 +0900
commit74ee0189f8678b7af61c594e69fab83cef7f1285 (patch)
treef525e9db4dc22e7d84c6632ed5b70360dfec274d /style.css
parent622b3504520be1b3e09d5798c5e946248fcfa8da (diff)
downloadpages-74ee0189f8678b7af61c594e69fab83cef7f1285.tar.gz
pages-74ee0189f8678b7af61c594e69fab83cef7f1285.zip
Add whitelist form
Diffstat (limited to 'style.css')
-rw-r--r--style.css22
1 files changed, 19 insertions, 3 deletions
diff --git a/style.css b/style.css
index c24e85f..f7055b3 100644
--- a/style.css
+++ b/style.css
@@ -1,10 +1,11 @@
1@font-face { 1@font-face {
2 font-family: Noto Sans Mono;
3 src: url(font.ttf); 2 src: url(font.ttf);
3 font-family: Noto Sans Mono;
4} 4}
5 5
6* { 6* {
7 font-family: Noto Sans Mono; 7 font-family: Noto Sans Mono;
8 text-decoration-thickness: 0.01em;
8} 9}
9 10
10@media screen and (max-width: 700px) { 11@media screen and (max-width: 700px) {
@@ -33,14 +34,29 @@
33 } 34 }
34} 35}
35 36
37input {
38 border: none;
39 color: #7587a6;
40 background: none;
41
42 border-bottom: 0.01em solid#7587a6;
43}
44
45input::placeholder {
46 opacity: 1;
47 font-style: italic;
48}
49
36a, 50a,
37.copy { 51.copy,
52.add {
38 cursor: pointer; 53 cursor: pointer;
39 color: #7587a6; 54 color: #7587a6;
40} 55}
41 56
42a:active, 57a:active,
43.copy:hover { 58.copy:hover,
59.add:hover {
44 cursor: pointer; 60 cursor: pointer;
45 color: #9b859d; 61 color: #9b859d;
46} 62}