forked from AllenCompSci/Hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
78 lines (77 loc) · 1.1 KB
/
Copy pathstyle.css
File metadata and controls
78 lines (77 loc) · 1.1 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
body {
margin: 0em;
padding: 0em;
height: 100%;
width: 100%;
font-family: 'Josefin Sans', sans-serif;
background-color: #fff;
}
a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
br {
line-height: 3em;
}
.fill {
height: 100%;
width: 100%;
position: relative;
}
.center {
display: block;
margin: auto;
width: 50%;
text-align: center;
}
.top {
background-color: #ff8764;
height: 100vh;
}
.bottom {
background-color: #fff;
margin: 1em;
}
.banner {
height: auto;
max-width: 50em;
width: 100%;
}
.repo-desc {
font-size: 2em;
}
.repo-link {
color: #000;
background-color: #fff;
text-align: center;
font-size: 2em;
padding-top: 0.5em;
padding-bottom: 0.5em;
-webkit-transition-duration: 0.4s; /* Safari */
transition-duration: 0.4s;
width: 10em;
height: 1em;
}
.repo-link:hover {
text-decoration: none;
background-color: #008cba;
color: #fff;
}
.census-title {
font-size: 2.3em;
padding: 1em;
}
.census-list {
}
.census-item {
font-size: 1em;
float:left;
padding: 0.2em;
padding-right: 2em;
}
ul.items li:nth-child(3n+4) {
clear:left;
float:left;
}