-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
97 lines (83 loc) · 1.36 KB
/
style.css
File metadata and controls
97 lines (83 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
* {
margin: 0;
padding: 0;
font-family: monospace;
background-color: rgb(235, 247, 248);
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
/* height: 90vh; */
}
h1 {
font-size: 3rem;
text-align: center;
margin-top: 1rem;
}
.inp {
margin: 2rem 0;
font-size: 1.5rem;
text-align: center;
}
input {
font-size: 2rem;
text-align: center;
padding-top: 0.3rem;
padding-bottom: 0.3rem;
border: 2px solid grey;
outline: none;
}
button {
font-size: 1.7rem;
padding: 0.4rem 0.9rem;
margin: 1rem;
font-weight: bold;
}
button:hover {
background-color: rgba(255, 255, 255, 0.568);
cursor: pointer;
}
#output {
margin-left: 1rem;
margin-right: 1rem;
padding: 2rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
max-width: 50rem;
border: 2px solid black;
border-radius: 1rem;
background-color: rgb(215, 250, 250);
font-size: 1.2rem;
}
#loading {
font-size: 1.7rem;
margin: 2rem;
}
strong {
background-color: rgb(215, 250, 250);
}
.footer {
font-size: 1.5rem;
font-weight: bold;
margin: 1rem;
}
a {
text-decoration: none;
color: black;
cursor: pointer;
}
#code {
color: rgb(24, 95, 3);
}
.visible {
visibility: visible;
}
.invisible {
visibility: hidden;
}