This repository has been archived by the owner on Oct 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
109 lines (91 loc) · 1.53 KB
/
style.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
body {
font-family: 'Roboto', sans-serif;
background: #fff;
}
a {
color: dodgerblue;
}
h1 {
text-align: center;
margin: 1em auto;
}
#container {
display: flex;
justify-content: center;
}
#editor,
#output {
resize: none;
outline: none;
height: 383px;
width: 350px;
font: inherit;
}
#editor {}
#copy {
display: block;
margin: 16px auto;
font-size: 18px;
padding: 0.5em 1em;
border-radius: 8px;
border: none;
background: #ddd;
}
#copy:active {
outline: none;
background: #bbb;
}
.fa-copy {
position: absolute;
right: 0;
}
#preview {
display: inline-block;
position: relative;
box-sizing: border-box;
height: 389px;
width: 280px;
min-width: 280px;
border: none;
background-color: #222b37;
color: #fff;
font-family: inherit;
font-size: 12px;
line-height: 16px;
padding: 20px 15px 20px 20px;
word-break: break-word;
overflow-y: scroll;
}
#preview::-webkit-scrollbar {
-webkit-appearance: none;
width: 8px;
}
#preview::-webkit-scrollbar-thumb {
background-color: rgba(255, 255, 255, 0.5);
}
#preview::-webkit-scrollbar-track {
background-color: rgba(255, 255, 255, 0.3);
}
#preview a {
color: white;
}
article {
background: #f5f5f5;
border-radius: 8px;
padding: 16px;
margin: 32px auto;
width: 480px;
max-width: 100%;
}
article h3 {
margin: 4px;
}
article table {
width: 100%;
}
footer {
text-align: center
}
.relative {
position: relative;
}