-
Notifications
You must be signed in to change notification settings - Fork 0
/
my-styles.css
92 lines (75 loc) · 1.6 KB
/
my-styles.css
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
/*
References:
I heavily referenced both the Bootstrap site and w3schools.com to complete this assignment.
*/
p {
font-size:x-large; /* Increase size of <p> and <ul> */
}
a {
color: hotpink /* Change color of hyperlinks to hotpink */
}
form {
color: black; /* text inside for set to Black */
}
img { /* Gives all images a HOTPINK border */
border: solid;
border-color: hotpink;
border-width: 5px;
}
.supersize-that{
font-size:x-large /* Increases the size of text */
}
.bold-that{
font-weight:bolder; /* Bolds Text */
}
.underline-that{
text-decoration: underline; /* Underlines Text */
}
.soft-that{
font-weight:lighter; /* Lightens text for less important info */
}
/* Class used to style the header */
.header {
background-color: hotpink;
color: black;
text-align: center;
}
/* Class used to style the footer */
.footer {
background-color: hotpink;
color: white;
text-align: center;
}
/* Class used to override bootstrap text --> WHITE */
.text-white {
color: white;
}
/*
Class used for most of main content:
--Background --> TEAL
--Centers Content
--Changes text --> WHITE
*/
.my-content {
background-color: teal;
display:flex;
justify-content: center;
color: white;
}
/* Class used to add extra space when needed in main content area */
.spacer-1 {
background-color: teal;
display:flex;
height:75px;
}
/* Class used to Style the Form Container*/
.form-box {
width: 700px;
height: 350px;
left: 473px;
top: 306px;
background: white;
border: solid;
border-color: hotpink;
border-width: 5px;
}