-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
92 lines (76 loc) · 1.6 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
@import url('./array-font.css');
@font-face {
font-family: 'Array-Regular';
font-family: 'Array-SemiboldWide';
font-family: 'Array-BoldWide';
}
body {
background-color: darkseagreen;
}
h1 {
font-family: Array-BoldWide;
}
h2 {
font-family: Array-Regular;
}
#cellmate-canvas-wrapper {
background-color: #fff;
padding: 15px;
border-radius: 10px;
min-width: 300px;
min-height: 300px;
max-width: 700px;
max-height: 700px;
height: 54vh;
}
#cellmate-canvas {
width: 100%;
height: 50vh;
min-width: 300px;
min-height: 300px;
max-width: 700px;
max-height: 700px;
border: dashed 3px #333;
background-color: #fff;
}
#generator-added-colors {
border: solid 1px #333;
border-radius: 10px;
padding: 10px;
min-height: 25px;
max-height: 175px;
overflow-y: scroll;
}
.colors-list-span {
background-color: #fff;
margin: 5px;
padding: 5px;
border: #333;
border-radius: 10px;
display: inline-block;
}
#logo {
padding: 5px;
border-radius: 10px;
text-shadow: 1px 1px 2px #4ff802, 0 0 1em #151515, 0 0 0.2em #080708;
}
.generator-control-btn {
margin-left: 10px;
margin-bottom: 12px;
}
.color-control-section label {
display: block;
}
.color-control-section button {
margin-left: 10px;
margin-bottom: 12px;
}
.btn-outline-secondary:hover {
color: #fff;
background-color: #072b4b;
border-color: #fff; /*set the color you want here*/
}
/*
text-shadow: 1px 1px 2px #4ff802, 0 0 1em blue, 0 0 0.2em #5252a1;
text-shadow: 1px 1px 2px #4ff802, 0 0 1em #151515, 0 0 0.2em #080708;
*/