style.css 1.81 KB
Newer Older
pythongosssss's avatar
pythongosssss committed
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
body {
	width: 100vw;
	height: 100vh;
	margin: 0;
	overflow: hidden;
}

#graph-canvas {
	width: 100%;
	height: 100%;
}

.comfy-multiline-input {
	background-color: #ffffff;
	overflow: hidden;
	overflow-y: auto;
	padding: 2px;
	resize: none;
	border: none;
}

.comfy-modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 100; /* Sit on top */
	padding: 30px 30px 10px 30px;
	background-color: #ff0000; /* Modal background */
	box-shadow: 0px 0px 20px #888888;
	border-radius: 10px;
	text-align: center;
	top: 50%;
	left: 50%;
	max-width: 80vw;
	max-height: 80vh;
	transform: translate(-50%, -50%);
	overflow: hidden;
}

.comfy-modal-content {
	display: flex;
	flex-direction: column;
}

.comfy-modal p {
	overflow: auto;
	white-space: pre-line; /* This will respect line breaks */
	margin-bottom: 20px; /* Add some margin between the text and the close button*/
}

.comfy-modal button {
	cursor: pointer;
	color: #aaaaaa;
	border: none;
	background-color: transparent;
	font-size: 24px;
	font-weight: bold;
	width: 100%;
}

.comfy-modal button:hover,
.comfy-modal button:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

pythongosssss's avatar
pythongosssss committed
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
.comfy-menu {
	width: 200px;
	font-size: 15px;
	position: absolute;
	top: 50%;
	right: 0%;
	background-color: white;
	text-align: center;
	z-index: 100;
	width: 170px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.comfy-menu-btns {
	margin-bottom: 10px;
}

.comfy-menu-btn-sm {
	font-size: 10px;
	width: 50%;
}

.comfy-menu-btn-lg, .comfy-menu-btn-queue {
	font-size: 20px;
}

.comfy-menu-btn-queue {
	width: 100%;
}

pythongosssss's avatar
pythongosssss committed
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
@media (prefers-color-scheme: dark) {
	body {
		background-color: #202020;
	}
	.comfy-multiline-input {
		background-color: #202020;
		color: white;
	}
}

@media only screen and (max-height: 850px) {
	#menu {
		margin-top: -70px;
	}
}