-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (56 loc) · 891 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
69
70
71
72
body {
display: flex;
justify-content: center;
background-color: #1e1e1e;
font-family: 'Courier New', Courier, monospace;
color: aliceblue;
}
main {
width: 1200px;
max-width: 85vw;
}
#user-input {
text-align: center;
}
h1 {
text-align: center;
}
table {
width: 100%;
}
td, th {
vertical-align: top;
}
ul {
width: fit-content;
margin: 0 auto;
}
.permission {
list-style-type: "✅";
}
.condition {
list-style-type: "⚠️";
}
.limitation {
list-style-type: "🚫";
}
#license-content {
margin: 2rem auto;
width: fit-content;
}
pre {
font-size: 1rem;
}
@media screen and (max-width: 600px) {
#license-content {
width: initial;
}
.table-responsive, pre {
font-size: 0.8rem;
overflow-x: auto;
}
span {
display: block;
margin-top: 5px;
}
}