-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (113 loc) · 2.06 KB
/
style.css
File metadata and controls
113 lines (113 loc) · 2.06 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
html {
height: 100%;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
display: flex;
padding: 15px;
height: inherit;
overflow: hidden;
background-color: #929da6;
}
#content {
width: min(100%, 1920px);
height: min(100%, 1280px);
overflow: hidden;
display: flex;
flex-direction: column;
border-radius: 6px;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2);
}
.title-bar {
display: inline-flex;
padding: 8px 15px;
column-gap: 15px;
align-items: center;
background-color: #22262a;
}
.circ-wrap {
display: inline-flex;
column-gap: 6px;
}
.circ {
width: 16px;
height: 16px;
border-radius: 50%;
background-color: var(--bg);
}
.title-bar h4 {
color: #0cfafa;
font-weight: 500;
}
.inner-wrapper {
overflow: hidden;
flex: 1;
display: flex;
}
section {
flex: 1;
height: 100%;
}
.snap-section {
flex-direction: column;
overflow-y: auto;
row-gap: 33px;
padding: 50px 22px 22px 22px;
display: flex;
align-items: center;
background-color: #303841;
}
textarea {
width: 100%;
height: inherit;
overflow-x: hidden;
color: #0cfafa;
font-size: 17px;
outline: none;
resize: none;
border: none;
padding: 11px 8px;
background-color: #282f37;
}
textarea::placeholder {
color: #0fb6b6;
}
textarea:focus::placeholder {
color: #768181;
}
.wrap {
max-width: 100%;
flex: 1;
}
.snap-shot {
overflow-x: auto;
padding: 44px;
max-width: 100%;
background-color: #9ca7b1;
}
img {
cursor: pointer;
display: block;
}
img:active {
transform: scale(0.98);
}
canvas {
border-radius: 6px;
box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.3);
}
:is(.snap-section, .snap-shot, textarea)::-webkit-scrollbar {
background: transparent;
}
:is(.snap-section, .snap-shot, textarea)::-webkit-scrollbar-track {
background: transparent;
}
:is(.snap-section, .snap-shot, textarea)::-webkit-scrollbar-thumb {
background: #68686860;
cursor: default;
}