-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstylesheet.css
63 lines (52 loc) · 1020 Bytes
/
stylesheet.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
/** My CSS */
body {
/*background-color: #3498db;*/
margin-top: 50px;
background-image: url(./images/bg.jpg);
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
font-family: 'PT Sans', sans-serif;
}
p {
color: white;
font-size: 18px;
}
.navbar {
font-size: 18px;
}
.vertically-center {
min-height: 100%; /* Fallback for browsers do NOT support vh unit */
min-height: 100vh; /* These two lines are counted as one :-) */
display: flex;
align-items: center;
}
.main-title {
font-family: 'PT Sans', sans-serif;
text-align: center;
font-size: 400px;
color: white;
}
.marginTop {
margin-top: 7%;
}
.marginSides {
padding-left: 25px;
padding-right: 25px;
}
.row {
margin: 0;
}
h1{
font-size: 48px;
}
.featureImg {
margin-top : 25px;
}
.whiteBorder
{
border: 5px white solid;
border-radius: 20px;
background-color: rgba(0, 0, 0, .50);
}