Skip to content

Commit ce29a5e

Browse files
committed
Change subtitle to an after
Did this so it will not load in before the main title.
1 parent 75012fc commit ce29a5e

File tree

4 files changed

+30
-4
lines changed

4 files changed

+30
-4
lines changed

css/index.css

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -155,6 +155,12 @@ html.sr .load-hidden {
155155
padding: 10px 5%;
156156
}
157157
.navigation .nav .logo {
158+
font-family: "YellowTail", cursive;
159+
font-size: 1.5rem;
160+
font-weight: bold;
161+
}
162+
.navigation .nav .logo a {
163+
text-decoration: none;
158164
color: #ffffff;
159165
}
160166
.navigation .nav .hamburger {
@@ -267,6 +273,12 @@ header .jumboTxt h1 {
267273
font-size: 4rem;
268274
}
269275
}
276+
header .jumboTxt h1::after {
277+
content: "Full Stack Web Developer";
278+
display: block;
279+
font-size: 2rem;
280+
font-family: "Roboto", "Helvetica";
281+
}
270282
header .jumboTxt p {
271283
font-size: 2rem;
272284
}

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<title>Lauren Dubose</title>
88
<meta name="viewport" content="width=device-width, initial-scale=1" />
99
<link rel="stylesheet" type="text/css" media="screen" href="css/index.css" />
10+
<link href="https://fonts.googleapis.com/css?family=Yellowtail" rel="stylesheet">
1011
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700" rel="stylesheet">
1112
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all.css"
1213
integrity="sha384-fnmOCqbTlWIlj8LyTjo7mOUStjsKC4pOpQbqyi7RrhN7udi9RwhKkMHpvLbHG9Sr" crossorigin="anonymous">
13-
<link href="https://fonts.googleapis.com/css?family=Yellowtail" rel="stylesheet">
1414
<link rel="stylesheet"
1515
href="https://cdn.rawgit.com/konpa/devicon/df6431e323547add1b4cf45992913f15286456d3/devicon.min.css">
1616
<script src="https://unpkg.com/[email protected]/dist/scrollreveal.min.js"></script>
@@ -21,7 +21,7 @@
2121
<body>
2222
<section class="navigation">
2323
<div class="nav container">
24-
<div class="logo">LND</div>
24+
<div class="logo"><a href="#">LND</a></div>
2525
<div class="hamburger">
2626
<p></p>
2727
<p></p>
@@ -43,7 +43,7 @@
4343
<div class="jumboImg loading"></div>
4444
<div class="container jumboTxt">
4545
<h1>Lauren Dubose</h1>
46-
<p>Full Stack Web Developer</p>
46+
<!-- <p>Full Stack Web Developer</p> -->
4747
</div>
4848
</header>
4949
<div class="home">

less/jumbo.less

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,13 @@ header {
4545
@media @phone {
4646
font-size: 4rem;
4747
}
48+
49+
&::after {
50+
content: "Full Stack Web Developer";
51+
display: block;
52+
font-size: 2rem;
53+
font-family: "Roboto", "Helvetica";
54+
}
4855
}
4956

5057
p {

less/nav.less

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,14 @@
1212
padding: 10px 5%;
1313

1414
.logo {
15-
color: @navColor;
15+
font-family: "YellowTail", cursive;
16+
font-size: 1.5rem;
17+
font-weight: bold;
18+
19+
a {
20+
text-decoration: none;
21+
color: @navColor;
22+
}
1623
}
1724

1825
.hamburger {

0 commit comments

Comments
 (0)