This repository was archived by the owner on Mar 1, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathstyle.css
More file actions
79 lines (69 loc) · 1.15 KB
/
style.css
File metadata and controls
79 lines (69 loc) · 1.15 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
body {
font-family: Montserrat, Helvetica Neue, sans-serif;
line-height: 2em;
box-sizing: border-box;
color: #333333b3;
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}
html,
body {
/* height: 100%; */
margin: 0;
}
a {
text-decoration: none;
color: #1b6568;
transition-duration: 100ms;
}
.github {
float: right;
fill: #445978;
padding-top: 5px;
}
p {
font-family: "Roboto";
font-weight: 300;
font-size: 23px;
text-align: center;
}
.name {
font-size: 32px;
text-transform: uppercase;
display: inline;
}
.container {
margin: 0 auto;
width: auto;
padding: 0 20px;
}
.container header {
padding: 12px;
line-height: normal;
text-align: center;
border: 4px solid #445978;
color: #445978;
}
main {
padding: 1em;
}
div.grid {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
}
div.grid-item {
margin-bottom: 20px;
margin-top: 10px;
}
.language-name:hover {
border-bottom: 3px solid #1b6568;
transition-duration: 100ms;
}
.footer {
position: absolute;
width: 100%;
bottom: 0;
background-color: #445978;
text-align: center;
color: white;
}