-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
107 lines (92 loc) · 1.77 KB
/
index.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
body,
html {
touch-action: none;
margin: 0;
border: 0 none;
padding: 0;
background-color: wheat;
width: 100%;
height: 100%;
}
* {
font-family: 'Accidental Presidency', monospace;
font-optical-sizing: none;
font-size-adjust: calc(2/3);
}
#app {
padding: 1rem;
}
#credits {
position: absolute;
bottom: 1rem;
left: 1rem;
}
#settings {
margin-top: 1rem;
height: 240px;
}
.wfmenu {
display: flex;
flex-direction: column;
row-gap: 5px;
width: 240px;
height: 165px;
}
#canvas {
display: block;
margin: 0;
color: white;
}
#canvas:focus {
outline: none;
}
.godot {
font-family: 'Noto Sans', 'Droid Sans', Arial, sans-serif;
color: #e0e0e0;
background-color: #3b3943;
background-image: linear-gradient(to bottom, #403e48, #35333c);
border: 1px solid #45434e;
box-shadow: 0 0 1px 1px #2f2d35;
}
.wfmenu_button {
background-color: blanchedalmond;
border: none;
border-bottom-style: groove;
color: rgb(69.5, 42, 19);
border-color: rgb(139, 69, 19);
width: 240px;
font-size: medium;
height: 100%;
border-radius: 15px;
transition-property: all;
transition-duration: 0.25s;
transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
}
.wfmenu_button:hover {
background-color: burlywood;
color: rgb(245, 245, 245);
height: 200%;
transition-property: height;
transition-duration: 0.20s;
transition-timing-function: ease-out;
}
.wfmenu_button:active {
background-color: rgb(75, 47, 25);
border-color: rgb(36, 18, 2);
border-bottom-style: none;
border-top-style: groove;
}
input {
background-color: whitesmoke;
border-radius: 9px;
color: rgb(69.5, 42, 19);
width: 240px;
border: none;
}
#stuff {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 4px;
}