forked from HackYourFuture/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·82 lines (81 loc) · 1.34 KB
/
style.css
File metadata and controls
executable file
·82 lines (81 loc) · 1.34 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
body {
padding: 0;
margin: 0;
background-color: rgb(221, 221, 221);
}
header {
display: flex;
flex-direction: row;
align-items: center;
background-color: blue;
}
h1 {
color: white;
margin: 0;
padding: 1%;
}
select {
margin-left: 3%;
height: 30px;
}
.main-container {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.repo-container {
width: 50%;
}
.contributors-container {
width: 50%;
}
ul {
list-style: none;
padding: 0;
margin: 1%;
}
li {
padding: 1%;
margin-bottom: 1%;
background-color: white;
border: 1px solid rgb(196, 196, 196);
border-radius: 5px;
box-shadow: 3px 3px 3px grey;
}
.contributors-container > ul > li {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding: 2% 10%;
}
.contributors-container > ul > li img {
width: 10%;
border-radius: 10%;
}
.contributors-container > ul > li span:last-child {
padding: 1% 3%;
background-color: grey;
color: white;
border-radius: 15%;
box-shadow: 2px 2px 5px black;
}
.alert-error {
color: red;
}
@media all and (max-width: 600px) {
header {
flex-direction: column;
}
select {
margin-bottom: 5%;
}
.main-container {
flex-direction: column;
padding: 2% 10%;
}
.contributors-container > ul > li img {
width: 25%;
border-radius: 10%;
}
}