-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
68 lines (58 loc) · 926 Bytes
/
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
html, body {
height: 100%;
width: 100%;
overflow-x: clip;
/* overflow-y: initial !important; */
/* overflow-x: hidden initial; */
/* overflow-y: initial !important; */
}
h1, h6 {
text-align: center;
}
h1 {
font-size: 3.5em;
}
h6 {
font-weight: normal;
font-size: 1.5em;
}
a {
color: red;
}
a:link {
color: red;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: underline;
}
#number {
margin: auto;
display: block;
width: 90%;
height: 2em;
resize: none;
font-size: 4em;
border: 5px solid red;
border-radius: 20px;
box-sizing: border-box;
padding: 15px;
text-align: center;
font-family: 'Roboto Slab', serif;
}
#output {
font-size: 2em;
text-align: center;
/* font-weight: bolder; */
font-family: 'Poppins', sans-serif;
margin: 2%;
}
.result {
font-size: 0.8em;
overflow-wrap: break-word;
font-weight: bolder;
}
hr {
margin: 2% 0;
}