-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle.css
125 lines (125 loc) · 2.28 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.color {
width: 100%;
}
.darktextboxes {
background-color:#404041;
border-color:#404041;
color:white;
}
.darkgray {
color:darkgray;
}
.gray {
color:gray;
}
.darkerrortext {
color:red;
}
.errortext {
color:darkred;
}
.pp::-webkit-scrollbar {
display: none;
}
.pp {
-ms-overflow-style: none; scrollbar-width: none;
}
body.dark {
background-color:#1b1b1d;
color:white;
}
select.dark {
background-color:#1F2933;
border-color:#2C3844;
color:white;
}
#colors {
height: 120px;
display: flex;
flex-direction: row;
}
@font-face {
font-family: MinecraftRegular;
src: url(./assets/fonts/MinecraftRegular.otf);
}
@font-face {
font-family: MinecraftBold;
src: url(./assets/fonts/MinecraftBold.otf);
}
@font-face {
font-family: MinecraftItalic;
src: url(./assets/fonts/MinecraftItalic.otf);
}
@font-face {
font-family: MinecraftBoldItalic;
src: url(./assets/fonts/MinecraftBoldItalic.otf);
}
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-display: swap;
font-weight: 300;
src: url(./assets/fonts/Quicksand/300.ttf) format('truetype');
}
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-display: swap;
font-weight: 500;
src: url(./assets/fonts/Quicksand/500.ttf) format('truetype');
}
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-display: swap;
font-weight: 600;
src: url(./assets/fonts/Quicksand/600.ttf) format('truetype');
}
@font-face {
font-family: 'Quicksand';
font-style: normal;
font-display: swap;
font-weight: 700;
src: url(./assets/fonts/Quicksand/700.ttf) format('truetype');
}
@font-face {
font-family: 'Quicksand';
font-style: regular;
font-display: swap;
font-weight: 400;
src: url(./assets/fonts/Quicksand/regular.ttf) format('truetype');
}
#coloredNick {
font-size: 4rem;
word-wrap: break-word;
}
.minecraft {
font-family: MinecraftRegular;
}
.minecraftbold {
font-family: MinecraftBold;
}
.minecraftitalic {
font-family: MinecraftItalic;
}
.minecraftibold {
font-family: MinecraftBoldItalic;
}
.minecraftunderline {
text-decoration: underline;
}
.minecraftustrike {
text-decoration: underline line-through;
}
.minecraftstrike {
text-decoration: line-through;
}
#inputs{
position: relative;
}
body{
margin: auto;
}
.padding-top {
padding-top: 20px;
}