-
Notifications
You must be signed in to change notification settings - Fork 0
/
editor.css
112 lines (102 loc) · 2.06 KB
/
editor.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
110
111
112
.editor-container {
border-left: 1px #2e2933 solid;
color: white;
border-top-right-radius: 12px;
border-bottom-right-radius: 12px;
background-color: var(--highlight);
display: flex;
flex-direction: column;
overflow: hidden;
width: 99%;
align-items: center;
}
.editor {
height: 90%;
resize: none;
}
.tabs {
margin-top: 9px;
display: flex;
justify-content: flex-start;
}
#tabList {
overflow-x: auto;
white-space: nowrap;
}
.tab {
position: relative;
display: inline-block;
margin-right: 5px;
}
.tab-button {
width: 150px;
height: 40px;
text-align: left;
border-top-left-radius: 12px;
border-top-right-radius: 12px;
border: none;
outline: none;
background-color: transparent;
color: white;
padding: 15px;
padding-left: 11px;
padding-right: 13px;
transition: 0.5s ease;
}
.tab-button:hover {
background-color: #232225;
}
.tab-button.active {
background-color: #1b1a1d;
}
.close-tab {
background-color: transparent;
color: white;
position: absolute;
top: 0;
right: 0;
height: 100%;
width: 40px;
padding: 5px 10px;
border-radius: 10px;
outline: none;
border: none;
transition: 0.3s ease;
}
.add-tab {
border-top-left-radius: 12px;
border-top-right-radius: 12px;
width: 40px;
border: none;
margin-left: 5px;
color: white;
background-color: var(--highlight2);
}
.add-tab svg {
margin-top: 6px;
}
.close-tab:hover {
background-color: #201e1e;
}
#action-buttons {
display: none;
flex-direction: row;
position: absolute;
top: 420px;
right: 30px;
z-index: 9999;
}
#action-buttons button {
display: flex;
justify-content: center;
align-items: center;
margin-right: 5px;
background-color: #111011;
border-radius: 50px;
padding: 10px;
border: red;
outline: none;
width: 40px;
height: 40px;
cursor: pointer;
}