-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
111 lines (93 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
111 lines (93 loc) · 1.66 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
* {
/* border: 1px solid red; */
padding: 0;
margin: 0;
}
:root {
--bg-color: rgb(36, 34, 34);
--border-color: rgb(128, 116, 116);
}
body {
background-color: var(--bg-color);
color: white;
}
.mainDiv {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
width: 100%;
max-width: 800px;
margin: 0 auto;
gap: 2rem;
padding: 1.5rem;
}
.details {
display: flex;
flex-direction: column;
gap: 1rem;
}
.hidden {
display: none;
}
.topView {
display: flex;
gap: 1rem;
}
.pp {
height: 8rem;
width: 8rem;
border-radius: 10rem;
}
.username {
font-size: 2rem;
font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}
.moreDetails {
display: flex;
gap: 1rem;
}
.bio {
padding: .7rem ;
}
.fol {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.repoList {
display: flex;
flex-wrap: wrap;
gap: .6rem;
padding: 1rem;
}
.repoList a {
padding: 0 .9rem;
text-decoration: none;
border-radius: .5rem;
color: black;
cursor: pointer;
background: linear-gradient(to right, #80c6d8, #feb47b);
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.inputBox {
background-color: var(--bg-color);
border: 1px solid var(--border-color);
padding: .5rem 1rem;
border-radius: .3rem;
color: white;
}
.search {
background-color: lightblue;
padding: .5rem 1rem;
border-radius: .3rem;
}
.bio,
.topView,
h5,
p,
.repoH {
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif
}