This repository has been archived by the owner on Feb 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
101 lines (80 loc) · 1.89 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
93
94
95
96
97
98
99
100
101
html, body {
width: 100%;
height: 100%;
margin: 0;
border: 0;
padding: 0;
}
html {
background: url('img/wallpaper.webp');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
body {
position: absolute;
top: 0;
-webkit-backdrop-filter: blur(7px);
backdrop-filter: blur(7px);
background-color: rgba(0, 0, 0, 0.274);
text-align: center;
}
.buttongrid {
width: 70vh;
height: 70vh;
background: url('img/transparencyeffect.png') repeat;
background-size: 2.5% 2.5%;
display: grid;
grid-template-columns: repeat(16, 1fr);
grid-template-rows: repeat(16, 1fr);
grid-column-gap: 0px;
grid-row-gap: 0px;
-webkit-user-select: none;
user-select: none;
z-index: 9;
}
.pixelbtn {
border-radius: 0;
border: 0.25px solid rgb(0, 0, 0);
background-color: transparent;
cursor: url('img/pencil.cur'), default;
}
.editor {
text-align: center;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
.controls {
margin: 1vh;
}
.preview {
visibility: hidden;
}
.control-button {
padding: 0.5vh 1vh;
font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
/* font-weight: bold; */
font-size: 1.5vh;
margin: 0.25vh;
border-radius: 5px;
border: 1px solid rgb(102, 102, 102);
background-color: rgb(60, 60, 60);
color: #fff;
}
.control-button:hover {
background-color: rgb(40, 40, 40);
}
.control-button:active {
background-color: rgb(20, 20, 20);
}
.head-title {
font-size: 4vh;
font-family: Segoe UI,Frutiger,Frutiger Linotype,Dejavu Sans,Helvetica Neue,Arial,sans-serif;
color: #fff;
}
.color-launch {
height: 3.5vh;
width: 5vh;
}