forked from foocoding/JavaScript3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnewStyle.css
More file actions
65 lines (59 loc) · 993 Bytes
/
newStyle.css
File metadata and controls
65 lines (59 loc) · 993 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
63
64
65
.header {
background-color: #176ab0;
color: white;
text-align: center;
padding: 5px;
}
#main-content {
width: 350px;
float: left;
padding: 10px;
}
#footer {
background-color: #176ab0;
color: white;
clear: both;
text-align: center;
padding: 5px;
}
.flex-wrapper {
font-family: Abel;
background-color: grey;
text-align: left;
padding-top: 25px;
padding-bottom: 25px;
font-size: 20px;
display: flex;
flex-direction: row;
justify-content: center;
background-color: #2E2C2F;
color: #444;
}
#repo {
background-color: whitesmoke;
border-color: #2E2C2F;
width: 40%;
border: 5px;
padding: 20px;
margin: 20px;
}
#contribDiv {
background-color: whitesmoke;
border-color: #2E2C2F;
width: 40%;
border: 5px;
padding: 20px;
margin: 20px;
}
@media screen and (max-width: 600px) {
.flex-wrapper {
-webkit-flex-direction: column;
flex-direction: column;
}
#repo {
width: 80%;
}
#contribDiv {
width: 80%;
}
}