-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
139 lines (136 loc) · 2.62 KB
/
style.css
File metadata and controls
139 lines (136 loc) · 2.62 KB
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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
@font-face {
font-family: andy;
src: url(assets/ANDYB.TTF);
}
html{
font-family: sans-serif;
}
body{
display: grid;
gap: 1rem;
margin: 0 clamp(0px, 8vw - 60px, 100px);
background-image: linear-gradient(#6385D0, #99CAE0);
}
body > *{
backdrop-filter: blur(2px);
padding: 10px;
border: 1px solid #ffffffb7;
/* border-radius: 10px; */
}
header{
background-color: #d0d0d7a4;
}
main, footer{
background-color: #d0d0d7f1;
}
p{
max-width: 70ch;
padding-bottom: 10px;
}
#table_img{
float: right;
display: grid;
gap: 10px;
}
#example_img{
width: 200px;
}
table,tr,td,th{
border-collapse: collapse;
text-align: center;
padding: 0 4px;
}
tr{
background: #fff;
}
td,th{
border: 1px solid #000;
}
main{
display: grid;
grid-template-columns: 2fr 3fr;
}
h1{
font-family: andy, sans-serif;
text-align: center;
/* margin: 10px 0; */
color: #E61E58;
filter: url(assets/filter.svg#outlineL);
font-size: clamp(1.5rem, 4vw + 1rem, 3rem);
font-weight: normal;
}
h2{
font-family: andy, sans-serif;
color: #00C8FF;
filter: url(assets/filter.svg#outlineM);
font-size: clamp(1rem, 4vw + 0.5rem, 1.7rem);
font-weight: normal;
}
[role="doc-subtitle"]{
color: #E61E58;
text-align: center;
}
h3{
font-family: andy, sans-serif;
font-size: clamp(0.7rem, 4vw + 0.5rem, 1.4rem);
font-weight: normal;
}
section{
border: 10px solid transparent;
padding: 10px;
}
#minifier{
border-image: url(assets/border_red.png) 16 round;
}
mark{
font-weight: bold;
}
mark.term{
background-color: #00C8FF77;
}
mark.gate{
background-color: #E61E5877;
}
mark.negation{
background-color: #004cff77;
}
#loader{
border-radius: 50%;
border: 5px solid #ffffff00;
border-top: 5px solid #3498db;
width: 20px;
height: 20px;
animation: spin 1s linear infinite;
}
form{
display: flex;
height: 25px;
align-items: center;
}
form > :is(input, button){
margin-right: 10px;
padding: 2px 5px;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
@media screen and (max-width: 950px) {
main{
grid-template-columns: 1fr;
}
}
.double{
display: grid;
grid-template-columns: 1fr 1fr;
gap: 10px;
border: 10px solid transparent;
border-image: url(assets/border_blue.png) 16 round;
padding: 10px;
margin: 10px auto;
}