Skip to content

Commit f01d049

Browse files
committed
added some extra changes to lab 1
1 parent ebf0505 commit f01d049

File tree

2 files changed

+44
-5
lines changed

2 files changed

+44
-5
lines changed

Code/matthew/html_css/labs/lab_1/index.html

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,10 @@
1414
<h1>Batman/Bruce Wayne</h1>
1515
</div>
1616

17+
<br>
18+
19+
<div class="line"></div>
20+
1721
<!-- <br> -->
1822
<div class="intro">
1923
<div class="background">
@@ -67,19 +71,33 @@ <h2>Introduction</h2>
6771
</div>
6872
</div>
6973

70-
<br>
7174

7275
<a href="https://en.wikipedia.org/wiki/Batman">Here is a link to learn more</a>
7376

7477
<br>
7578

79+
<h2>Can also be found in</h2>
80+
81+
<ul>
82+
<li>Citizen Wayne</li>
83+
<li>DC Bombshells</li>
84+
<li>The Dark Night</li>
85+
<li>The Dark Multiverse</li>
86+
<li>Injustice: Gods Among Us</li>
87+
</ul>
88+
89+
<br>
7690
<h2>Places of residence</h2>
7791

7892
<ul>
7993
<li>Old Wayne Manor</li>
8094
<li>New Wayne Manor</li>
8195
</ul>
8296

97+
<div class="line"></div>
98+
99+
<p class="ext">Information gathered Via wikipedia and general google searches</p>
100+
83101

84102
</body>
85103
</html>

Code/matthew/html_css/labs/lab_1/style.css

Lines changed: 25 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,32 @@ body {
33
background-size: 16%;
44
color: rgb(194, 194, 187);
55
font-family: 'pt sans';
6-
vertical-align: middle;
6+
vertical-align: top;
77

88
}
99
.banner {
10+
background-image: radial-gradient(circle at 16% 83%, rgba(148, 148, 148,0.06) 0%, rgba(148, 148, 148,0.06) 50%,rgba(63, 63, 63,0.06) 50%, rgba(63, 63, 63,0.06) 100%),radial-gradient(circle at 68% 87%, rgba(66, 66, 66,0.06) 0%, rgba(66, 66, 66,0.06) 50%,rgba(105, 105, 105,0.06) 50%, rgba(105, 105, 105,0.06) 100%),radial-gradient(circle at 38% 50%, rgba(123, 123, 123,0.06) 0%, rgba(123, 123, 123,0.06) 50%,rgba(172, 172, 172,0.06) 50%, rgba(172, 172, 172,0.06) 100%),linear-gradient(90deg, hsl(18,0%,1%),hsl(18,0%,1%));
11+
background-size: 20%;
12+
opacity: 75%;
13+
/* background-repeat: no-repeat; */
1014
/* border: 2px solid red; */
1115
width: 100%;
1216
height: 100px;
13-
text-align: center;
14-
vertical-align: top;
17+
text-align:center;
18+
}
19+
h1 {
20+
padding: 24px;
21+
color: rgba(255, 255, 0, 0.842);
22+
opacity: 90%;
23+
text-shadow: black 10px 10px;
1524
}
1625

26+
.line {
27+
border: 1px solid rgb(153, 151, 151);
28+
opacity: 50%;
29+
}
1730

18-
h1, h2 {
31+
h2 {
1932
color: black ;
2033
font-family: "oswald";
2134
}
@@ -51,4 +64,12 @@ blockquote {
5164

5265
a {
5366
color: rgb(173, 173, 121);
67+
}
68+
69+
ul {
70+
list-style-type:circle;
71+
}
72+
73+
.ext {
74+
text-align: center;
5475
}

0 commit comments

Comments
 (0)