-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
102 lines (88 loc) · 1.36 KB
/
index.css
File metadata and controls
102 lines (88 loc) · 1.36 KB
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
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;800&display=swap");
* {
box-sizing: border-box;
margin: 0;
font-family: "Inter", sans-serif;
}
/* html {
} */
/* */
main {
margin: 0;
}
body {
margin: auto;
text-align: center;
line-height: 1.75;
font-size: 1.25em;
background-color: #1f2937;
color: white;
}
section {
margin: 0;
}
section.top {
background-color: #6943ff;
color: white;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
section.bottom {
padding: 3rem 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
margin: 3em 0 1em;
}
/* p,
ul,
ol {
margin-bottom: 2em;
color: #1d1d1d;
font-family: sans-serif;
} */
input {
border: 3px solid #b295ff;
border-radius: 5px;
font-size: 4rem;
width: 100%;
max-width: auto;
text-align: center;
background-color: transparent;
font-weight: 800;
color: white;
line-height: 1.5;
}
button {
display: block;
margin: 1em 0;
background-color: white;
border: none;
border-radius: 5px;
font-weight: 500;
width: 100%;
padding: 0.6rem 1.8rem;
line-height: 1.5;
}
.container {
width: 15ch;
margin-bottom: 1rem;
}
.result {
background-color: #273549;
border-radius: 5px;
margin: 1.5rem auto;
max-width: 50rem;
padding: 2rem 0 1.5rem 0;
}
h2 {
color: #ccc1ff;
font-weight: 600;
margin: 0 0 1rem 0;
}