-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
90 lines (82 loc) · 1.64 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
86
87
88
89
90
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap");
* {
box-sizing: border-box;
}
body {
font-family: "Ubuntu", sans-serif;
background-color: #001427;
color: #fff;
margin: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
height: 100vh;
overflow: hidden;
}
.changeText {
margin-top: 2rem;
background-color: rgba(0, 0, 0, 0.8);
padding: 0.6rem 1rem;
border-radius: 1000px;
border: none;
color: rgb(228, 228, 228);
font-size: 0.9rem;
font-weight: bold;
font-family: inherit;
width: 20rem;
box-shadow: 0 2px 6px rgba(255, 255, 255, 0.1);
}
.main {
background-color: rgba(0, 0, 0, 0.8);
border-radius: 600px;
padding: 0.3rem 0.5rem 0.3rem 1rem;
font-size: 1rem;
text-align: center;
margin-bottom: 1.5rem;
box-shadow: 0 2px 6px rgba(255, 255, 255, 0.08);
}
.text {
margin: 1rem 2rem;
line-height: 1.4;
}
.speed {
width: 2.4rem;
font-size: 1rem;
font-family: inherit;
font-weight: bold;
background-color: transparent;
color: #fff;
border: none;
}
input:focus {
outline: none;
}
/* input[type="number"] {
-webkit-appearance: textfield;
-moz-appearance: textfield;
appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
-webkit-appearance: visible;
} */
@media (orientation: portrait) {
.changeText {
width: 90%;
}
.text {
font-size: 1.5rem;
line-height: 1.6;
}
.main {
margin-bottom: 3.5rem;
}
}
@-moz-document url-prefix() {
@media (orientation: portrait) {
.main {
margin-bottom: 4.5rem;
}
}
}