-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (109 loc) · 1.98 KB
/
styles.css
File metadata and controls
127 lines (109 loc) · 1.98 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
:root {
/* GitHub dark color pallete */
--body-bg-color: #0d1117;
--content-bg-color: #161b22;
--search-bg-color: #263042;
--color-fg-default: #c9d1d9;
--color-fg-muted: #8b949e;
font-size: 16px;
font-family: "Helvetica", "Arial", sans-serif;
color: var(--color-fg-default);
}
* {
border-radius: 4px;
}
body {
max-height: 100vh;
margin: 2rem;
background-color: var(--body-bg-color);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
gap: 2rem;
}
a {
color: var(--color-fg-default);
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
p {
margin: 0;
}
input {
background-color: var(--search-bg-color);
border: 1px var(--color-fg-default) solid;
min-height: 2rem;
min-width: 20rem;
color: var(--color-fg-default);
font-size: 1.5rem;
}
#forms {
background-color: var(--content-bg-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 5rem;
min-width: 40rem;
flex-direction: column;
gap: .5rem;
}
#fetch-status {
font-size: 1.5rem;
}
#result {
background-color: var(--content-bg-color);
display: flex;
justify-content: center;
align-items: center;
min-height: 5rem;
width: 40rem;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
gap: 1rem;
}
#result section {
width: 50%;
min-height: 100%;
padding: 1rem;
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
gap: .5rem;
}
#result #avatar {
border-radius: 50%;
width: 10rem;
height: 10rem;
}
#result #name {
font-size: 2rem;
}
#result #login,
#result .content {
color: var(--color-fg-muted);
}
#result #bio {
padding: 4px;
}
#result .content .value {
color: var(--color-fg-default);
}
#organizations {
display: flex;
gap: 4px;
}
#organizations img {
height: 2rem;
width: 2rem;
border-radius: 10%;
background-color: var(--search-bg-color);
}
.hidden {
display: none !important;
}