-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
107 lines (93 loc) · 1.88 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
:root {
/* CSS HEX */
--rich-black-fogra-39: #050505ff;
--blue-munsell: #0093AF;
--platinum: #ebe9e9ff;
--firacode: 'Fira Code', monospace;
--fwl: 300;
--fwm: 400;
--fww: 900;
--fs-base: 0.9rem;
--fs-h1: 2rem;
--fs-h2: 2.2rem;
--fs-h3: 1.3rem;
--fs-xl: 6rem;
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font-family: var(--firacode);
background-color: var(--blue-munsell) ;
color: var(--rich-black-fogra-39);
line-height: 2;
font-size: var(--fs-h3);
max-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
min-height: 100vh;
}
.container{
background-color: var(--platinum);
border-radius: 7px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
width: 32em;
max-width: 100%;
margin: 1em;
}
.header{
text-align: center;
}
.form{
text-align: center;
}
.input{
padding: 0.2em;
}
.input input{
border: none;
border-radius: 4px;
appearance: none;
outline: none;
background:rgba(33, 211, 235, 0.438) ;
width: 7em;
height: 1.8em;
text-align: center;
font-family: var(--firacode);
font-size: var(--fs-h3);
}
input[type=number]{
-moz-appearance: textfield;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
-webkit-appearance: none;
margin: 0;
}
.buttons button{
margin: 0.8em;
width: 5em;
height: 1.8em;
font-size: var(--fs-h3);
/* border: 2px dotted var(--blue-munsell); */
border: none;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
border-radius: 4px;
}
.buttons button:hover{
color:var(--blue-munsell) ;
}
.results{
padding: 0.8em;
text-align: center;
font-size: var(--fs-base);
}
.globeviz canvas{
border: none;
border-radius: 4px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
margin-bottom: 4px;
}