-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
128 lines (117 loc) · 1.82 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
*{
box-sizing: border-box;
}
body{
margin: 0;
padding: 0;
}
.container{
width: 100vw;
height: 100vh;
background-color: #1e1e1e;
}
.header{
width: 100%;
height: 35px;
background-color: #3c3c3c;
display: flex;
align-items: center;
justify-content: center;
color: #cccccc;
}
.searchbar{
width: 33%;
height: 75%;
min-width: 300px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #616161;
border-radius: 5px;
background-color: #464646;
font-family: sans-serif;
font-size: 14px;
}
.editor{
width: 100%;
/* height: 96%; */
}
.footer{
width: 100%;
height: 20px;
background-color: #007acc;
display: flex;
align-items: center;
justify-content: space-around;
}
.footer .left{
display: flex;
align-items: center;
justify-content: left;
width: 40%;
padding-left: 20px;
}
.footer .right{
display: flex;
align-items: center;
justify-content: right;
width: 40%;
padding-right: 20px;
}
.footer .center{
display: flex;
align-items: center;
justify-content: center;
width: 20%;
}
.download, .copy{
/* padding-left: 10px; */
margin: 0px 10px;
cursor: pointer;
}
.copied{
display: none;
}
.language{
margin: 0px 10px;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.language select{
outline: none;
border: none;
background-color: #007acc;
padding: 0px 4px;
height: 100%;
color: white;
-webkit-appearance: none;
}
.language select option {
color: white;
}
.language select::-ms-expand {
display: none;
}
/* html, body, #container {
position: absolute;
left: 0;
top: 0;
width: 100%;
height: 100%;
margin: 0;
padding: 0;
overflow: hidden;
} */
.indicator, .peerMode{
width: 15px;
height: 15px;
background-color: rgb(204, 72, 72);
border-radius: 50%;
border: 1px solid #1e1e1e;
margin: 0px 3px;
}
.peerMode{
background-color: white;
}