-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
75 lines (65 loc) · 1.09 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
* {
padding: 0;
margin: 0;
box-sizing: border-box;
}
body {
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: Poppins, sans-serif;
font-size: 16px;
}
.title {
padding: 20px;
font-size: 5em;
font-weight: 500;
}
.title sub {
font-size: 0.4em;
font-weight: 300;
}
.switch {
display: flex;
justify-content: center;
align-items: center;
}
.switch .radio-check {
display: flex;
justify-content: center;
align-items: center;
padding: 15px;
font-size: 1.3em;
font-weight: 300;
}
.switch label {
order: 2;
margin: 5px;
}
input#in {
padding: 5px;
border: 1px solid #000;
border-radius: 5px;
font-size: 1.2em;
outline: none;
width: 30%;
}
input[type='number']::-webkit-inner-spin-button,
input[type='number']::-webkit-outer-spin-button {
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
margin: 0;
}
.output {
display: flex;
padding: 20px;
font-size: 25px;
height: 40px;
}
.output:empty {
display: block;
}