-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
98 lines (90 loc) · 1.57 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
body {
margin: 0px;
background: rgb(240, 240, 240);
color: rgb(20, 20, 20);
font-family: Lato, sans-serif;
font-size: 18px;
font-weight: lighter;
}
h1, h2, h3 {
font-family: Lato;
font-weight: bold;
}
h1 {
font-size: 40px;
}
h2 {
font-size: 24px;
color: #6A71E1;
}
a {
color: #6A71E1;
text-decoration: none;
}
a:hover {
color: black;
}
.banner{
text-align: center;
color: white;
padding: 150px 0px;
background-image: linear-gradient(-225deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%), url("https://images.unsplash.com/photo-1449247709967-d4461a6a6103?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1351&q=80");
background-size: cover;
background-position: center;
}
.banner h1 {
font-size: 50px;
}
.banner p {
opacity: 0.8;
font-size: 30px;
font-weight: lighter;
margin-bottom: 40px;
}
.btn-blue {
color: white;
background: #6772e5;
box-shadow: 0 4px 6px rgba(50,50,93,.11);
border-radius: 4px;
padding: 15px 20px;
}
.btn-blue:hover {
background: #7795f8;
color: white;
}
.card-white {
background-color: white;
border-radius: 4px;
text-align: center;
box-shadow: 0 4px 6px rgba(50,50,93,.11);
padding: 16px;
height:300px;
margin: 10px 0px;
}
.card-white img {
margin-bottom: 20px;
}
.spacer {
margin: 40px 0px;
}
.footer {
background-color: black;
padding: 24px;
color: white;
}
.footer a {
color: white;
font-size: 32px;
}
.list-inline {
list-style: none;
padding-left: 0px;
}
.list-inline li {
display: inline;
padding: 0px 8px;
}
.img-circle {
border-radius: 50%;
margin: 20px
}