-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
54 lines (54 loc) · 1016 Bytes
/
Copy pathstyle.css
File metadata and controls
54 lines (54 loc) · 1016 Bytes
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
html, body {
height: 100%;
width: 100%;
margin: auto;
background-color: lightblue;
background-image: url(assets/top_secret.png);
background-repeat: no-repeat;
background-attachment: fixed;
background-position: top;
}
input[type=number] {
width: 45px;
}
textarea {
width: 600px;
height: 100px;
margin: auto;
word-wrap: break-word;
word-break: break-all;
text-align: center;
display: block;
resize: none;
}
div {
margin: auto;
overflow-wrap: break-word;
text-align: center;
display: block;
}
.main {
height: 100%;
width: 100%;
display: table;
}
.wrapper {
display: table-cell;
height: 100%;
vertical-align: middle;
}
.info {
color: rgb(31, 31, 31);
font-size: 12px;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: rgb(53, 53, 53);
}
.output {
width: 700px;
height: 300px;
}
#output {
color: red;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: black;
}