blob: 0cbf3c3d7cc57aa50a385e7e1b30e6b76c6ed989 (
plain) (
blame)
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
|
@import url(https://fonts.googleapis.com/css?family=Inconsolata|Inter&display=swap);
body {
margin-top: 40px;
margin-left: 150px;
max-width: 900px;
line-height: 1.6;
font-size: 16px;
background: #f8f3ff;
color: #3a1616;
padding: 0 10px;
font-family: Inter, sans-serif;
}
input {
padding: 10px 16px;
margin: 2px 0;
box-sizing: border-box;
border: 2px solid #dabebe;
border-radius: 6px;
background: #f8f3ff;
color: #3a1616;
font-size: 16px;
-webkit-transition: 0.5s;
transition: 0.5s;
outline: 0;
}
input:focus {
border: 2px solid #3a1616;
}
.button {
background-color: #f8f3ff;
border: none;
color: #000;
padding: 6px 14px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
border: 2px solid #3a1616;
border-radius: 6px;
}
.button:hover {
background-color: #3a1616;
color: #fff;
}
.isa_error,
.isa_info,
.isa_success,
.isa_warning {
width: 90%;
margin: 10px 0;
padding: 12px;
}
.isa_info {
color: #00529b;
background-color: #bde5f8;
}
.isa_success {
color: #4f8a10;
background-color: #dff2bf;
}
.isa_warning {
color: #9f6000;
background-color: #feefb3;
}
.isa_error {
color: #d8000c;
background-color: #ffd2d2;
}
h1,
h2,
h3 {
line-height: 1.2;
font-family: Inter, sans-serif;
}
h2 {
font-size: 18px;
}
img {
max-width: 750px;
border-radius: 10px;
}
a {
cursor: pointer;
color: #217ab7;
line-height: inherit;
}
a:hover {
background-color: #e3d6ff;
}
a:visited {
color: #43458b;
border-color: #43458b;
}
pre {
font-family: Inconsolata, monospace;
}
::selection {
color: #fff;
background: #ff4081;
}
|