forked from Technigo/project-github-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
146 lines (120 loc) · 1.96 KB
/
style.css
File metadata and controls
146 lines (120 loc) · 1.96 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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
:root {
--primary: rgb(122, 183, 147);
--secondary: rgb(15, 92, 46);
--text: rgb(0, 61, 25);
}
body {
background-color: var(--secondary);
font-family: 'Montserrat', sans-serif;
max-width: 1200px;
margin: auto;
}
input[type=button] {
font-family: 'Montserrat', sans-serif;
}
.profile-area h1 {
font-size: 2em;
margin: auto 5px;
}
.profile-area h2 {
margin-bottom: 0;
}
.sort h3 {
margin: 0 10px 0 0;
}
.main-area h2 {
margin-top: 5px;
margin-left: 10px;
}
.link, h1, h2, h3, p {
color: var(--text);
}
.link {
font-size: 18px;
font-weight: 1000;
}
.link:visited {
color: var(--secondary);
}
.link:hover {
color: rgb(90, 136, 109);
}
.profile-container {
display: flex;
flex-direction: column;
}
.profile-area, .sort {
display: flex;
flex-direction: row;
align-items: center;
flex-wrap: wrap;
}
.profile-area, .chart-area {
border-radius: 2px;
padding: 5px;
margin: 10px;
}
.profile-img {
width: 100px;
height: 100px;
border-radius: 50%;
border-style: solid;
border-color: var(--secondary);
object-fit: cover;
margin: auto 2px;
}
.main-area {
display: flex;
flex-direction: column;
}
.main-area, .profile-container, footer {
background-color: var(--primary);
width: 90%;
margin: 25px auto;
border-radius: 2px;
}
.repo-container, .sort {
border-radius: 2px;
padding: 5px;
margin: 5px;
}
.repo-container {
display: flex;
flex-wrap:wrap;
justify-content: center;
}
.repo-card {
flex: 1 0 25%;
min-width: 250px;
}
.repo-card, #chart {
background: rgb(255, 255, 255);
border-radius: 2px;
padding: 5px 5px;
margin: 10px 5px;
}
footer {
display: flex;
justify-content: space-between;
align-items: center;
height: 50px;
}
footer p {
width: 300px;
margin: 0px;
margin-left: 10px;
font-size: 12px;
}
footer li {
display: inline;
list-style: none;
}
.nav-socials {
width: 100px;
padding: 0;
}
@media (min-width: 370px) {
footer p{
font-size: 16px;
}
}