Skip to content

Commit 99644f8

Browse files
committed
About header rework start
1 parent 3f598cb commit 99644f8

File tree

2 files changed

+60
-4
lines changed

2 files changed

+60
-4
lines changed

public/images/wrench.svg

Lines changed: 37 additions & 0 deletions
Loading

src/views/About.vue

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@
44
image="games.gif"
55
style="height: 500px; width: 100%;"
66
>
7-
<div style="height: 100%; width: 100%">
8-
Hello
7+
<div class="about-header">
8+
<img src="images/wrench.svg">
9+
<h1>WHO WE ARE</h1>
910
</div>
1011
</GenericJumbotron>
1112
<MMAIInfo />
@@ -105,9 +106,27 @@ export default Vue.extend({
105106
</script>
106107

107108
<style scoped>
108-
h2 {
109-
text-align: left;
109+
.about-header {
110+
height: 100%;
111+
width: 100%;
112+
background-color: rgba(255, 255, 255, 0.4);
110113
}
114+
115+
.about-header img {
116+
display: inline-block;
117+
height: 100px;
118+
width: 100px;
119+
position: relative;
120+
top: 50%;
121+
transform: translateY(-50%);
122+
}
123+
124+
.about-header h1 {
125+
font-size: 48px;
126+
color: black;
127+
position: absolute;
128+
}
129+
111130
li {
112131
list-style: none;
113132
}

0 commit comments

Comments
 (0)