-
Notifications
You must be signed in to change notification settings - Fork 12.5k
Expand file tree
/
Copy pathstyles.css
More file actions
74 lines (63 loc) · 996 Bytes
/
styles.css
File metadata and controls
74 lines (63 loc) · 996 Bytes
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
* {
box-sizing: border-box;
}
body {
font-family: sans-serif;
background-color: #181c1f;
color: #bdd1d4;
margin: 2rem;
}
header {
margin: 2rem 0;
display: flex;
gap: 1.5rem;
align-items: center;
}
header img {
width: 3rem;
object-fit: contain;
}
header h1 {
margin: 0;
color: #48d9f3;
}
header p {
margin: 0;
color: #82c2ce;
}
#tabs {
max-width: 32rem;
margin: 2rem 0;
overflow: hidden;
}
#tabs menu {
margin: 0;
padding: 0;
display: flex;
gap: 0.25rem;
}
#tabs button {
font: inherit;
font-size: 0.85rem;
background-color: #282f33;
border: none;
border-bottom-color: #48d9f3;
color: #e0eff1;
border-radius: 4px 4px 0 0;
padding: 0.75rem 1rem;
cursor: pointer;
transition: all 0.2s ease-out;
}
#tabs button:hover,
#tabs button.active {
background-color: #48d9f3;
color: #273133;
}
#tab-content {
background-color: #2d3942;
border-radius: 0 4px 4px 4px;
padding: 1rem;
}
#tab-content li {
margin: 0.75rem 0;
}