-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
126 lines (103 loc) · 1.8 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
126
/* page layout */
body {
/* font-family: "Press Start 2P"; */
font-family: "Verdana";
}
.column {
display: flex;
flex-direction: column;
}
.row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
}
.grow {
flex-grow: 1;
}
/* 2d console UI */
#menu {
overflow: hidden;
width: 80%;
border: 10px solid transparent;
border-image:url(./assets/images/button.png) 20 fill;
height: 20px;
transition: height 0.5s;
border-radius: 10px 10px 0px 0px;
color: black;
}
#status-bar {
background-color: rgba(0, 0, 0, 0.279);
color: white;
border-radius: 10px;
margin-bottom: 10px;
height: 15px;
}
.nes-btn {
border: 10px solid red;
border-image: url(./assets/images/button.png) 20 fill;
border-radius: 20px;
transition: all 0.1s ease-in-out;
margin: 0px 8px 8px;
cursor: pointer;
}
.nes-btn:hover {
transform: scale(1.05);
}
.nes-btn:active {
transform: scale(0.95);
}
/* gallery mode */
#galleryMode {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
background-color: rgb(191, 248, 205);
border-radius: 12px;
}
/* radio mode */
#radioMode {
background-color: slategray;
border-radius: 12px;
display: flex;
height: 100%;
}
/* chat mode */
#subtitles {
text-align: center;
overflow-y: auto;
width: 55vh;
color: yellow;
font-size: 28px;
padding-bottom: 10px;
}
#chatMode {
height: 100%;
justify-content: space-between;
}
#chat {
text-align: left;
border: 2px solid grey;
background-color: white;
color: rgb(100, 39, 80);
overflow-y: scroll;
height: 100px;
}
#chat-input {
width: 100%;
}
@media (max-width: 600px) {
#menu {
width: 100%;
}
#console {
margin: 2px;
padding: 4px;
}
.desktop {
display: none;
}
}