-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
77 lines (64 loc) · 1.04 KB
/
styles.css
File metadata and controls
77 lines (64 loc) · 1.04 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
body {
margin: 0;
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
h2,
h3 {
margin: 0;
}
button {
color: #009;
font: inherit;
border: 0;
background: transparent;
cursor: pointer;
}
.App {
width: 95%;
max-width: 700px;
margin: 0 auto;
}
.App header {
display: flex;
align-items: center;
justify-content: space-between;
}
.App h1:after {
content: '🐾';
margin-left: 0.5em;
}
.App nav button:before {
content: '⬅';
margin-right: 0.5em;
}
.App main {
display: flex;
}
.Profile {
display: flex;
flex-grow: 1;
width: 66%;
}
.Profile .profile-picture {
width: 100px;
height: 100px;
margin-right: 1rem;
display: flex;
background: #999;
}
.Profile .profile-picture img {
width: inherit;
}
.Profile.loading {
color: #999;
}
.Profile.loading p {
background: #999;
}
.Directory {
flex-grow: 1;
}