-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
executable file
·77 lines (65 loc) · 1.11 KB
/
style.css
File metadata and controls
executable file
·77 lines (65 loc) · 1.11 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
body {
font-family: 'Roboto', sans-serif;
background: rgba(242, 242, 242, .6);
margin: 0;
}
* {
box-sizing: border-box
}
/*NAVBAR*/
.anchor {
display: block;
position: relative;
top: -70px;
visibility: hidden;
}
/*JUMBOTRON*/
.jumbotron {
height: 100vh; /*height to 100% of view height*/
background: #0D99B7; /*background color to blue*/
margin-bottom: 0; /*no bottom margin*/
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.jumbotron-text {
/*TAGLINE UNDER NAME*/
font-weight: 400;
font-size: 2em;
color: white;
text-align: center;
}
.jumbotron-text h1 {
/*YOUR NAME*/
text-transform: uppercase;
font-weight: 500;
font-size: 3em;
margin-bottom: 0;
}
.jumbotron-text p {
margin: 0;
font-weight: 300;
}
/*SOCIAL LINKS*/
.ul-social {
text-align: center;
padding-left: 0;
}
.li-social-links {
display: inline-block;
list-style: none;
}
.social {
font-size: 2em;
color: white;
padding: 20px;
}
.company-details {
font-size: 18px;
padding-top: 10px;
}
.company-details a {
color: #FFF;
text-decoration: none;
}