-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (68 loc) · 1.34 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
@import "https://fonts.googleapis.com/css?family=Rubik+One";
@font-face {
font-family: 'Nemesis Glyph';
src: URL('fonts/nemesis.ttf') format('truetype');
}
body {
background-color: rgba(13, 30, 38, 0);
}
#userInput {
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
width: 500px;
top: 300px;
opacity: 0.01;
}
.input {
font-family: 'Nemesis Glyph' ,'Rubik One', sans-serif;
font-size: 30px;
text-transform: uppercase;
text-align: center;
border: none;
border-bottom: 5px solid #337799;
padding: 0;
background-color: #0d1e26;
color: #8cbfd9;
}
.input:focus {
outline: none;
border-bottom: 5px solid #8cbfd9;
}
input::-moz-selection {
background-color: rgba(13, 30, 38, 0);
color: rgba(140, 191, 217, 0.2);
}
input::selection {
background-color: rgba(13, 30, 38, 0);
color: rgba(140, 191, 217, 0.2);
}
.error {
border-bottom: 5px solid #d98c8c;
}
.error:focus {
border-bottom: 5px solid #d98c8c;
}
#main {
position: relative;
overflow: visible;
width: 100%;
height: 100%;
}
#kineticType {
overflow: visible;
position: absolute;
left: 50%;
-webkit-transform: translateX(-50%);
transform: translateX(-50%);
}
@media (max-width: 400px) {
#kineticType {
top: 100px;
}
#userInput {
width: 300px;
top: 220px;
}
}