forked from FWNavy/rigtools
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathentry.css
More file actions
108 lines (94 loc) · 1.7 KB
/
entry.css
File metadata and controls
108 lines (94 loc) · 1.7 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
body {
background-color:#1e2030;
color: white;
font-family: Arial, Helvetica, sans-serif;
overflow: hidden;
align-items: center;
justify-content: center;
display: flex;
}
#particles-js {
position: absolute;
width: 100vw;
height: 100vh;
z-index: -1;
}
.grid {
flex-grow: 1;
display: grid;
width: 100%;
height: 100%;
gap: 1.5rem;
justify-content: center;
align-items: center;
grid-template-rows: auto auto 1fr;
grid-template-columns: 2fr auto;
}
.script-area {
grid-column: 1 / -1;
grid-row: 3;
}
#script {
resize: none;
width: 100%;
height: 100%;
color: white;
background: none;
border-radius: 1rem;
border-color: white;
padding: 1rem;
}
.inputs {
display: flex;
justify-content: space-evenly;
}
#extID {
width: 60%;
}
#path {
width: 25%;
}
.txtinput {
height: 100%;
border: none;
background: blue;
border-radius: 0.75rem;
color: white;
padding: 1rem;
}
.txtinput:focus {
border: none;
}
.txtinput::selection {
background: lightblue;
}
iframe {
display: none;
}
.txtinput::placeholder {
color: white;
}
.btn:hover {
background-image: linear-gradient(rgb(0 0 0/40%) 0 0);
}
.btn {
border: none;
background: lightgreen;
background-image: none;
border-radius: 0.75rem;
width: 100%;
height: 3rem;
}
.main {
width: clamp(min(25rem, 100%), 60%, 50rem);
height: clamp(min(25rem, 100%), 60%, 50rem);
display: flex;
align-items: center;
flex-direction: column;
border: 3px solid white;
font-weight: bold;
padding: 5%;
border-radius: 10px;
text-align: center;
background-color: #24273a;
}