-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.css
108 lines (90 loc) · 1.45 KB
/
main.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
body {
padding-top: 5px;
background-color: #FAFBFC;
}
.nav a {
color: #3a3a3a;
font-size: 13px;
font-weight: bold;
padding: 10px 10px;
text-transform: uppercase;
}
.nav li {
display: inline;
}
.jumbotron {
background-image:url('assets/cover.jpg');
height: 600px;
background-repeat: no-repeat;
background-size: cover;
}
.jumbotron .container {
position: relative;
top: 180px;
left: 50px;
}
.jumbotron h1 {
color: #fff;
font-size: 48px;
font-family: 'Shift', sans-serif;
font-weight: bold;
}
.jumbotron p {
font-size: 20px;
color: #fff;
}
.learn-more {
background-color: #f7f7f7;
}
.learn-more .profile {
padding: 50px 50px;
}
.learn-more h3 {
padding-top: 40px;
font-family: 'Shift', sans-serif;
font-size: 20px;
font-weight: bold;
}
.learn-more p {
font-size: 16px;
}
.learn-more a {
color: #00b0ff;
}
.blog {
height: 600px;
background-color: white;
}
.blog .container {
position: relative;
top: 80px;
left: 50px;
}
.blog h1 {
font-size: 48px;
font-family: 'Shift', sans-serif;
font-weight: bold;
}
.blog p {
font-size: 20px;
padding-bottom: 50px;
}
.button-group {
margin-bottom: 20px;
}
.posts {
list-style: none;
padding-left: 0;
width: 100%;
}
.posts li {
border: 1px solid #d8d8d8;
padding-top: 10px;
padding-left: 20px;
padding-right: 20px;
padding-bottom: 10px;
margin-right: 100px;
margin-bottom: 10px;
word-wrap: break-word;
min-height: 42px;
}