-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcode.css
More file actions
99 lines (83 loc) · 1.51 KB
/
code.css
File metadata and controls
99 lines (83 loc) · 1.51 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
* {
box-sizing: border-box;
padding: 0;
margin: 0;
}
body {
background-color: white;
color: black;
}
.dark-mode {
background-color: rgb(40, 44, 52);
color: white;
}
.col-md-7 {
padding-left: 50px;
}
.modeList {
border-left: 2px solid white;
cursor: pointer;
}
.modeList:hover {
border-color: green;
}
.btns {
width: 50px;
height: 47px;
}
#dropdownMenuButton:hover {
background-color: rgb(209, 198, 198);
border-color: rgb(209, 198, 198);
color: black;
}
.main-editor {
background-color: inherit;
border-left: 15px solid grey;
border-right: 15px solid grey;
border-top: 19px solid grey;
color: inherit;
display: flex;
width: 100%;
padding: 1rem 0 1rem 1rem;
box-shadow: 0 4px 3px black;
height: 550px;
justify-content: center;
align-items: center;
}
.first,
.third {
background-color: inherit;
color: inherit;
font-size: 15px;
font-weight: 500;
width: 50%;
overflow-x: hidden;
overflow-y: auto;
outline: none;
padding: 0.4rem;
height: 530px;
}
.second {
background-color: rgb(255, 255, 255);
border: none;
border-left: 1px solid grey;
width: 50%;
overflow-y: auto;
white-space: pre;
right: 0;
padding: 0.4rem;
height: 530px;
}
.btns:hover {
background-color: rgb(219, 204, 204);
}
@media(max-width:767px) {
.col-md-7 {
padding-left: 40%;
}
}
@media(max-width:420px) {
.col-md-7 {
padding-left: 35%;
}
}