-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathA3_Team9.css
More file actions
182 lines (140 loc) · 2.79 KB
/
A3_Team9.css
File metadata and controls
182 lines (140 loc) · 2.79 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
@charset "utf-8";
/*
CIS 145 Assignment 3: Web Development Tutorial Style Sheet
Author: Team9
Date: March 31, 2023
Filename: A3_Team9.css
*/
/* HTML Styles */
html {
background-image: url(A3_backgroundImage.jpg);
}
/* Header Styles */
header {
font-size: 3em;
text-align: center;
text-shadow: black 3px 2px;
color: greenyellow;
background: royalblue
}
/* Heading Styles */
h1 {
margin-left: 12px;
font-size: 24px;
color: mediumblue;
text-decoration: underline;
}
article > h2 {
margin: 5px 0px 5px;
font-size: 20px;
color: rgb(30, 101, 255);
}
article > h3 {
margin: 5px 0px 5px;
font-size: 20px;
text-shadow: red 1px 1px 3px;
color: rgb(30, 101, 255);
}
/* Page Body Styles */
body {
background-color: #FAEBD7;
margin-left: auto;
margin-right: auto;
width: 1000px;
}
section#backimg {
clear: right;
}
section#table {
clear: center;
}
.clear {
clear: both;
}
/* Article Styles */
article {
padding: 12px;
}
/* List Styles */
ul {
margin-left: 20px;
margin-top: 5px;
}
/* Figure and Image Styles */
div.linearGradient {
margin: 12px;
width: 700px;
height: 180px;
background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
}
div.radialGradient {
margin: 12px;
width: 250px;
height: 250px;
background: radial-gradient(red, orange, yellow, green, blue, indigo, violet);
}
section#intro figure {
height: fit-content;
width: fit-content;
float: right;
}
section#intro figcaption {
margin-top: -12px;
margin-left: 12px;
}
section#transformation img {
height: 200px;
width: 200px;
}
section#transformation figure {
height: fit-content;
width: fit-content;
margin: 15px;
}
section#transformation figure#translate {
border: 3px solid black;
float: left;
}
section#transformation img#translate {
transform: translate(-15px, 15px);
}
section#transformation figure#skew {
border: 3px solid black;
float: left;
}
section#transformation img#skew {
transform: skew(15deg, 10deg);
}
section#transformation figure#rotate {
border: 3px solid black;
float: left;
}
section#transformation img#rotate {
transform: rotate(70deg);
}
/* Table Styles */
table, th, td {
margin: 12px;
border: 2px solid;
text-align: center;
}
th, td {
padding: 3px;
}
table#base {
float: left;
}
table#spacing {
border-spacing: 5px;
float: left;
}
table#collapse{
float:left;
border-collapse: collapse;
}
/* Video Player Styles */
iframe {
margin: 12px;
height: 300px;
width: 500px;
}