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
68 lines (59 loc) · 1.04 KB
/
Copy pathstyle.css
File metadata and controls
68 lines (59 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
body {
background: #FFECE9;
font-family: Arial, Helvetica, sans-serif;
}
.profile-container{
width:90%;
margin: 0 auto;
}
.profile-wrapper{
display: flex;
flex-direction: row;
align-items: center;
max-width: 500px;
margin: 20px auto 40px auto;
}
.profile-photo {
width:30%;
}
.profile-photo img{
width: 100%;
border-radius: 50%;
border: 3px solid black;
filter: grayscale(100%);
}
.profile-username{
width: 60%;
margin-left: 25px;
box-shadow: 2px 2px 4px;
}
.user-name {
margin: 6px 0 0 0;
padding: 6px 0 0 0;
border-bottom: 3px solid rgb(255, 192, 203);
}
.real-name, .location {
margin: 6px 0 0 0;
padding: 6px 0 0 0;
border-bottom: 1px solid #B2B3B4;
}
.profile-text {
text-align: justify;
margin-bottom: 40px;
}
/* Cards styling*/
.projectsContainer {
width: 90%;
display: flex;
flex-direction: column;
margin: 0 auto;
}
.repo-card {
color: white;
width: 90%;
background-color: rgb(90, 78, 78);
border: 1px solid;
margin: 20px auto;
max-width: 500px;
padding-left: 15px;
}