-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
113 lines (100 loc) · 1.84 KB
/
style.css
File metadata and controls
113 lines (100 loc) · 1.84 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
109
110
111
112
113
html,
body {
background-color: #333;
overflow: hidden;
color: #eee;
font-family: monospace;
}
p {
font-size: 1.3em;
text-align: left;
}
#mynetwork {
width: 100vw;
height: 80vh;
border-top: 1px solid #444;
}
/* .settings {
display: flex;
justify-content: space-between;
width: 90%;
margin: 0 auto;
} */
.left {
width: 20%;
padding: 0 0 2rem 5rem;
/* border: 1px solid red; */
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
border-top: 1px solid #444;
border-bottom: 1px solid #444;
border-left: 1px solid #444;
margin-bottom: 10px;
border-radius: 10px 0 0 10px;
}
.right {
width: 50%;
border-radius: 0 10px 10px 0;
/* border: 1px solid wheat; */
text-align: center;
border-top: 1px solid #444;
border-bottom: 1px solid #444;
border-left: 1px solid #444;
border-right: 1px solid #444;
margin-bottom: 10px;
margin-right: 20px;
}
.settings {
/* border: 1px solid greenyellow; */
display: flex;
justify-content: center;
}
code {
background-color: rgb(124, 205, 124);
color: #272822;
border-radius: 0.3rem;
padding: 4px 5px 5px;
white-space: nowrap;
}
.instructions {
margin: 0 auto;
width: fit-content;
}
.visitedContainer {
border-top: #444 solid 1px;
}
.modal {
background-color: rgba(34, 34, 34, 0.967);
width: 600px;
max-width: 100%;
height: 400px;
max-height: 100%;
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 1;
border-radius: 5%;
display: flex;
flex-direction: column;
box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#modal-overlay {
z-index: 1000;
display: flex;
flex-direction: column;
position: fixed;
justify-content: center;
align-items: center;
left: 0;
width: 100%;
height: 100%;
}
#modal-input {
width: 50%;
}
.modal.closed {
display: none;
}