-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
127 lines (107 loc) · 2.06 KB
/
styles.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
body {
font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji;
color: white;
background-color: rgb(13, 17, 23);
margin: 0;
padding: 0;
height: 100vh;
display: flex;
flex-direction: column;
}
.function {
border-top: 1px solid #21262d;
display: flex;
padding: 10px;
}
#functions-list {
padding: 0;
}
.function:last-child {
border-bottom: 1px solid #21262d
}
.functions {
background-color: rgb(13, 17, 23);
}
.nav {
height: 28px;
padding: 16px;
background-color: #161b22;
display: flex;
align-items: center;
/*border-bottom-left-radius: 10px;*/
/*border-bottom-right-radius: 10px;*/
}
a {
font-weight: normal;
cursor: pointer;
}
label {
cursor: pointer;
user-select: none;
}
#container {
/*margin-top: 1rem;*/
/*border-radius: 10px;*/
display: flex;
border-bottom: 1px #21262d solid;
flex-grow: 1
}
#functions h2 {
padding-left: 1em;
}
#functions {
min-width: 230px;
max-width: 230px;
width: 20%;
display: flex;
flex-direction: column;
border-right: 1px #21262d solid;
}
.function {
padding-left: 1em
}
#parameters {
background-color: rgb(1, 4, 9);
width: auto;
padding: 1em;
flex-grow: 1
}
button, input[type="checkbox"] {
cursor: pointer;
}
button {
cursor: pointer;
margin-bottom: 10px !important;
margin-top: 10px;
}
.nav-link {
padding: 25px 5px;
color: #cacacaca;
font-weight: 600;
font-size: 16px;
text-decoration: none;
transition: color .1s ease-in
}
.nav-link:hover {
color: #531eae;
}
#export {
display: none;
margin: 15px;
font-family: Consolas, "Courier New", monospace;
border-radius: 10px;
padding: 5px 5px 5px 15px;
color: #cccccc;
background-color: #1f1f1f
}
#hidden-buttons {
position: absolute;
bottom: 0;
right:0;
margin: 0 !important;
opacity: 0;
transition: opacity 0.5s cubic-bezier(.29, 1.01, 1, -0.68);
}
#hidden-buttons:hover {
opacity: 1
}