-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (90 loc) · 1.72 KB
/
style.css
File metadata and controls
97 lines (90 loc) · 1.72 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
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@500&display=swap');
html {
box-sizing: border-box;
}
body {
margin: 0; height: 100vh;
font-family: 'Noto Sans', sans-serif;
}
:root {
--border-radius: 4px;
}
textarea {
border: 1px solid #ddd;
margin-top: 1rem;
padding: 1rem;
width: 100%;
}
textarea:focus {
outline: none;
border: 1px solid #ccc;
}
.navbar a {
text-decoration: none;
color: #fff;
display: inline-block;
/* transition: all 0.3s ease-in-out; */
}
.navbar a:hover {
color: #fff;
filter: brightness(1.2);
}
/* #deletedTemplateToast {
position: absolute;
top: 60px;
right: 10px;
} */
.okck--menu-sub {
border: 1px solid #ddd;
border-radius: var(--border-radius);
}
.okck--code-viewer {
height: calc(100vh - 460px);
transition: height 0.3s ease-in-out;
}
.okck--code-viewer.with-minimize {
height: calc(100vh - 110px);
}
.okck--code-viewer iframe {
width: 100%;
height: 100%;
border: none;
}
.okck--code-editor {
height: 340px;
transition: height 0.5s ease-in-out;
}
.okck--code-editor.with-minimize {
height: 0;
}
.okck--code-editor label {
margin-top: 1rem;
background-color: #212529;
color: #fff;
font-size: .75rem;
padding: .5rem 1rem;
width: 100%;
}
.okck--code-editor textarea {
margin-top: 0; margin-bottom: 1rem;
border: 1px solid #ddd;
}
.okck--code-editor textarea:focus {
outline: none;
}
.okck--code-editor .col-md-4 {
transition: width 0.5s ease-in-out;
}
.okck--code-editor .col-md-4.with-maximize {
width: calc(100% - 400px);
}
.okck--code-editor .col-md-4.with-minimize {
width: 200px;
}
.okck--code-save-modal .btn-close {
position: absolute;
top: 1rem; right: 1rem;
}
.okck--code-save-modal form {
margin-bottom: .5rem;
}