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
109 lines (96 loc) · 1.54 KB
/
style.css
File metadata and controls
109 lines (96 loc) · 1.54 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
body {
background:rgb(243, 214, 223);
box-sizing: border-box;
font-size: 1.5rem;
font-family: 'Montserrat', sans-serif;
color: #dd1c1c;
}
.intro-text{
align-items: center;
}
a{
text-transform: uppercase;
color: #401313;
font-size: 0,5em;
}
header {
text-align: center;
font-size: 1.6em;
}
.profile-container {
font-size: 1.0rem;
display: flex;
align-items: center;
flex-direction: column;
width: 90%;
margin: 0 auto;
}
.intro-text{
color: #401313;
text-align: center;
}
.profile-image {
border-radius: 50%;
width: 320px;
align-content: center;
border: 1px solid #401313;
}
.projects {
margin-top: 10px;
}
a:hover {
text-decoration: underline;
}
.repo-title{
font-size: 1.3em;
}
.repo-item2,branch {
display: flex;
flex-direction: column;
flex-direction:inherit;
padding: 2px;
margin-top: 15px;
font-size: 1.2em;
}
.updated{
display: flex;
flex-direction: column;
padding: 2px;
font-size: 1.1em;
}
.language {
display: flex;
flex-direction: column;
padding: 2px;
font-size: 1.2em;
margin-bottom: 15px;
margin-top: 15px;
}
hr {
border: 0,3px solid #401313
}
.footer{
margin-top: 25px;
margin-bottom: 25px;
font-size: medium;
text-align: center;
}
/*** MEDIA QUERIES ***/
@media (min-width: 327px) {
.repo{
display:flex;
flex-direction:column;
margin: 30px;
border: 1px solid #401313;
border-radius: 6px;
}
}
@media (min-width: 1200px) {
.repo{
display:flex;
flex-direction:column;
margin: 30px;
border: 1px solid #401313;
border-radius: 6px;
}
}