-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfetchapi-style.css
More file actions
62 lines (51 loc) · 869 Bytes
/
fetchapi-style.css
File metadata and controls
62 lines (51 loc) · 869 Bytes
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
body {
margin: auto;
}
#header {
width: 50%;
display: flex;
margin: auto;
align-content: center;
flex-direction: row;
background-color: #3F51B5;
padding: 10px;
}
#title {
color: white;
margin-left: 30px;
font-family: 'Roboto', sans-serif;
}
#repoSelector {
margin-left: 20px;
height: 40px;
font-size: 18px;
margin-top: 15px;
margin-left: 30px;
}
#main {
width: 50%;
margin: auto;
display: flex;
align-items: flex-start;
flex-direction: row;
}
#info {
width: 48%;
padding-left: 20px;
min-height: 250px;
}
#contributors {
width: 48%;
margin-left: 2%;
min-height: 250px;
}
li {
list-style: none;
width: 100%;
}
.borderframe {
border: none;
border-radius: 2px;
background-color: #fff;
box-shadow: 0 1px 8px 0 rgba(0, 0, 0, .2), 0 3px 4px 0 rgba(0, 0, 0, .14), 0 3px 3px -2px rgba(0, 0, 0, .12);
}