-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathapp.css
97 lines (87 loc) · 1.35 KB
/
app.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
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
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100;0,200;0,400;1,100;1,200&display=swap");
* {
margin: 0;
padding: 0;
}
.navigation {
display: flex;
justify-content: space-between;
margin-top: 10px;
/* position: initial; */
width: 100%;
}
body {
font-family: "IBM Plex Sans", sans-serif;
position: absolute;
left: 50%;
width: 60%;
background-color: bisque;
transform: translateX(-50%);
}
@media (max-width: 720px) {
body {
/* background-color: red; */
width: 90%;
}
}
.loading {
position: relative;
margin: 0 auto;
}
header {
position: sticky;
text-align: center;
margin-top: 20px;
margin-bottom: 20px;
}
table,
th,
td {
padding: 10px;
border: 1px solid black;
border-collapse: collapse;
}
.info {
position: relative;
padding-top: 15px;
padding-bottom:10px;
text-align: center;
font-size: smaller;
}
.title {
font-size: 40px;
}
.app {
width: 100%;
position: inherit;
text-align: left;
}
.content {
text-align: justify;
margin-top: 20px;
font-size: 13px;
line-height: 1.9rem;
}
.by {
font-size: 13px;
margin-top: 10px;
}
sup {
font-size: 10px;
}
a {
color: rgb(45, 45, 245);
cursor: pointer;
}
.disabled {
cursor: not-allowed;
color: grey;
pointer-events: none;
}
.tagline {
font-size: 12px;
font-weight: 100px;
}
.hidden {
display: none;
}