-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
78 lines (65 loc) · 1.09 KB
/
style.css
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
* {
box-sizing: border-box;
}
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;500&display=swap');
body{
font-family: 'Roboto', sans-serif;
color: #000306;
margin: 0;
font-weight: 300;
}
h1{
text-transform: uppercase;
}
h1 span{
color: #be5e38;
}
.intro{
color: #fff;
background-color: #be5e38;
padding: 10px;
font-weight: 300;
margin-bottom: 50px;
}
@media screen and (min-width: 1499px){
.container{
max-width: 1500px;
}
}
.container{
width: 90%;
margin: 0 auto;
}
.project-link a {
text-decoration: none;
background-color: #be5e38;
color: #fff;
padding: 6px;
display: inline-block;
border-radius: 4px;
font-weight: 300;
font-size: 14px;
margin-bottom: 16px;
}
.gist-wrap{
width: 100%;
margin-bottom: 50px;
}
@media screen and (min-width: 1335px){
.gist-wrap {
width: 48%;
}
}
.gists {
display: flex;
flex-wrap: wrap;
width: 100%;
justify-content: space-between;
}
.gist-description {
margin-bottom: 10px;
}
.gist-data{
height:250px;
overflow-y: visible;
}