-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
72 lines (61 loc) · 1001 Bytes
/
main.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
body {
background-color: gray;
min-height: 100vh;
}
footer {
text-align: center;
margin-bottom: 10px;
}
.flex-item {
flex: 1;
}
.flex-container {
display: flex;
flex-direction: row;
/* min-height: 100vh; */
margin: 10px;
padding: 50px;
}
.card {
height: 100px;
}
.card-header {
background-color: skyblue !important;
text-align: center;
}
.card-body {
text-align: center;
vertical-align: baseline;
}
#char {
font-size: 100px;
text-align: center;
}
.buttonContainer {
position: absolute;
top: 15px;
right: 15px;
}
.tableButton {
background-color: transparent;
border: dodgerblue solid 2px;
border-radius: 5px;
font-weight: bold;
color: dodgerblue
}
.hidden {
display: none;
}
.showBlock {
display: block;
}
#asciiTable {
width: 100%;
}
#mobile-input input {
width: calc(80%);
margin: 0px 10%;
font-size: 50px;
border: 1px solid lightgray;
text-align: center;
}