-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathstyles.css
More file actions
102 lines (84 loc) · 1.29 KB
/
styles.css
File metadata and controls
102 lines (84 loc) · 1.29 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
98
99
100
101
102
h3 {
margin: 10px 0;
}
header h2 {
margin: 0;
}
header {
background-color: #415e6b;
color: white;
}
.container:after,.container:before{
content:"";
display:table;
clear:both;
}
.container {
padding: 10px 16px
}
.red {
color: red;
}
.green {
color: green;
}
.card {
box-shadow:0 2px 4px 0 rgba(0,0,0,0.16),0 2px 10px 0 rgba(0,0,0,0.12);
margin-bottom: 15px;
}
.list {
display: flex;
flex-direction: column;
gap: 1em;
}
button {
padding: 0.5em;
margin: 0.3em;
}
.wasm-support-dot {
width: 1em;
height: 1em;
border-radius: 100%;
display: inline-block;
margin-right: 4px;
}
html, body {
margin: 0;
padding: 0;
}
body {
display: flex;
flex-direction: column;
height: 100vh;
}
.pages {
overflow-y: scroll;
flex-grow: 1;
}
.page {
margin: 10px;
display: none;
}
.page.active {
display: block;
}
.tabs {
display: flex;
background-color: white;
border-top: 1px solid gainsboro;
align-items: center;
}
.tab {
flex-grow: 1;
height: 36px;
padding: 0;
border: none;
margin: 0;
background-color: transparent;
font-size: 1.3em;
text-align: center;
align-content: center;
}
.tab[aria-selected="true"] {
background-color: lightgrey;
}