-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStyleSheet.css
123 lines (95 loc) · 1.77 KB
/
StyleSheet.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
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
/*Extends the page margin at the top*/
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
.page {
background: rgb(125,25,240);
background: linear-gradient(230deg, rgba(125,25,240,1) 5%, rgba(255,255,255,1) 50%, rgba(0,212,255,1) 95%);
}
/*Head*/
/*Navigation Bar*/
.NavHeader {
padding-top: 3%;
padding-bottom: 2.5%;
}
.NavLinks {
padding-top: 1.5%;
padding-bottom: 1.5%;
padding-left: 3%;
padding-right: 3%;
}
/*Body*/
body {
height: 100vh;
font-family: 'Segoe UI';
}
/*Footer*/
footer {
height: auto;
text-align: center;
margin-top: 20%;
}
/*Universal Styling*/
a {
color: white;
text-decoration: none;
font-family: 'Segoe UI';
}
li {
list-style: none;
display: inline;
color: #222222;
float: right;
padding-inline-end: 2.5%;
}
/* Links */
.link {
text-decoration: underline;
color: #222222;
font-family:'Segoe UI';
}
/*Divs*/
h1 {
color: #222222;
font-size: 500%;
text-align: left;
font-family:'Segoe UI';
margin-left: 10%;
margin-bottom: 2.5%;
}
/* Section One */
.Section1 {
margin: auto;
}
.FirstDiv {
text-align: left;
margin-bottom: 2%;
margin-left: 5%;
margin-right: 40%;
}
.SecondDiv {
text-align: left;
margin-bottom: 2%;
margin-left: 5%;
margin-right: 40%;
}
.ThirdDiv {
text-align: left;
margin-bottom: 2%;
margin-left: 5%;
margin-right: 40%;
}
.Text {
font-size: 125%;
font-family: 'Segoe UI';
color: #222222;
}
hr {
width: 60%;
margin-left: 5%;
border-color: #222222;
margin-top: 6%;
border-width: .25px;
}