This repository has been archived by the owner on May 12, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtool.css
116 lines (102 loc) · 1.69 KB
/
tool.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
body {
background: black;
}
iframe {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(0, 0, 0, 0.5);
height: 100%;
}
a {
color: skyblue;
}
input[type='submit'] {
border-radius: 1em;
min-width: 5ch;
min-height: 5ch;
}
input[type='search'],
input[type='submit'] {
box-shadow: 0 0 10px white;
}
input[type='search'],
input[type='text'] {
border-radius: 2em;
padding: 1em;
border: darkgray solid 0.2em;
transition: 0.3s border-width;
}
input[type='search']:focus,
input[type='text']:focus {
border-width: 0.5em;
}
@media (min-width: 1122px) {
main {
background-image: url(/bg.svg);
background-repeat: no-repeat;
background-size: cover;
animation: pan 15s ease-in-out infinite alternate;
}
input[type='search'],
input[type='submit'],
input[type='text'] {
box-shadow: 0 0 10px black;
}
}
body {
color: white;
font-family: ui-monospace, 'Cascadia Mono', 'Cascadia Code', 'Consolas',
'Segoe UI Mono', 'Ubuntu Mono', 'Roboto Mono', Menlo, Monaco, monospace;
}
main {
color: white;
}
header {
display: flex;
align-items: center;
}
header img {
padding-right: 1em;
}
header::after {
content: '9701.ml';
}
main {
position: absolute;
top: 0;
z-index: -10;
left: 0;
width: 100%;
height: 100%;
float: right;
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}
.center {
display: flex;
justify-content: center;
align-items: center;
}
textarea {
resize: horizontal;
}
form {
display: flex;
justify-content: center;
align-items: center;
}
form > * {
margin: 1em;
}
@keyframes pan {
from {
background-position: 0% 0%;
}
to {
background-position: left;
}
}