-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (73 loc) · 1.37 KB
/
styles.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
body {
background-color: #0f0f0f;
}
body h1 {
font-family: "YurukaStd";
color: aliceblue;
}
body h2 {
font-family: "YurukaStd";
color: aliceblue;
font-size: 70%;
}
body div {
color:aquamarine;
font-family: 'Courier New', Courier, monospace;
margin-left: 20px;
}
@font-face {
font-family: "YurukaStd";
src: url('fonts/FOT-YurukaStd-UB.ttf');
font-weight: normal;
font-style: normal;
}
.tree-item {
background-color: #5f5f5f;
width: auto;
font-size:medium;
padding: 6px;
font-family: "YurukaStd";
font-size: large;
}
.tree-item.base {
background-color: purple;
width: 20%;
font-size: medium;
padding-left: 10px;
}
.tree-item .nested-tree {
background-color: rgb(129, 0, 0);
border-radius: 0px;
color:red;
}
.outer {
width: 70%;
background-color: #0c1333;
border-radius: 5px;
margin-bottom: 20px;
}
input {
width: 5%;
font-family: "YurukaStd";
margin-left: 20px;
margin-bottom: 20px;
display: inline-block;
font-size: 20px;
}
label {
margin-left: 20px;
font-size: 30px;
}
.modifier-button {
width: auto;
font-family: "YurukaStd";
margin-bottom: 20px;
display: inline-block;
font-size: 20px;
background-color: dimgrey;
color: white;
border-radius: 5px;
}
.modifier-button:active {
background-color: lightgray;
}