-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
139 lines (124 loc) · 2.69 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
127
128
129
130
131
132
133
134
135
136
137
138
139
body {
background-color: #2F3E4A; /* #717488 */
}
* {
}
.centered-grid {
border-radius: 10px;
background-color: #717488;
padding: 20px;
width: 50%;
margin: auto;
margin-top: 15%;
display: grid;
grid-template-columns: auto auto; /* repeat(auto-fit, minmax(100px, 1fr)), repeat(auto-fit, minmax(100px, 1fr)) */
font-family: "Courier New", Courier, monospace;
position: relative;
/* margin-bottom: 15%; */
}
.centered {
border-radius: 10px;
background-color: #717488;
padding: 20px;
width: 30%;
margin: auto;
margin-top: 15%;
font-family: "Courier New", Courier, monospace;
/* margin-bottom: 15%; */
}
.grid-column {
width: 300px;
}
@media screen and (max-width:800px) { /* 1070px */
.grid-column {
width: auto;
height: auto;
}
.centered-grid {
width: auto;
}
}
/* Mobile Media Query */
@media screen and (max-width:400px) {
.grid-column {
width: auto;
height: auto;
}
.centered-grid {
width: auto;
margin: auto auto auto auto;
}
}
.input {
background-color: #58748A;
font-family: "Courier New", Courier, monospace;
}
.submit {
border-radius: 3px;
border: 1px solid black;
padding: 10px;
font-family: "Courier New", Courier, monospace;
background-color: gray;
transition: all .5s ease-in; /* idk if i should shorten the transition or not -ethan */
}
input[type=submit]:hover {
transition: all .5s ease-in; /* .2s ease transition */
background-color: white;
cursor: pointer;
}
a {
color: blue;
}
a:hover {
color: white;
}
/* this is something you can change, just adding it so that i can see it easily */
/* I think it's good for the alpha version, we can leave that as is for now -ethan */
.invalid {
color: red;
}
.chatbox {
background-color: #717488;
border-radius: 3px;
padding: 10px;
margin: 10px;
height: 500px;
font-family: "Courier New", Courier, monospace;
/* overflow: scroll; */
overflow: auto;
}
.userinput {
background-color: #717488;
border-radius: 3px;
padding: 10px;
margin: 10px;
}
.strech {
width: 70%;
background-color: #2F3E4A;
height: 30px;
color: white;
font-family: "Courier New", Courier, monospace;
}
.footer {
text-align: center;
border-radius: 10px;
background-color: #717488;
padding: 20px;
width: 30%;
margin: auto;
font-family: "Courier New", Courier, monospace;
}
::-webkit-scrollbar {
width: 20px;
}
::-webkit-scrollbar-thumb {
background: #5a5d6d;
border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
background: #7d7d7d;
}
/* ::-webkit-scrollbar-thumb:active {
background: #808080;
} */