-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
138 lines (116 loc) · 2.5 KB
/
style.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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
/* -------------Global styles-------------*/
body{
/* Centering all the text on the page */
text-align: center;
/* Default font styles */
font-family: Arial, Helvetica, sans-serif;
/* Gradient background */
background: rgb(249,253,254);
background: -moz-linear-gradient(0deg, rgba(249,253,254,1) 0%, rgba(47,152,230,0.9475140397956058) 36%, rgba(0,0,0,1) 100%);
background: -webkit-linear-gradient(0deg, rgba(249,253,254,1) 0%, rgba(47,152,230,0.9475140397956058) 36%, rgba(0,0,0,1) 100%);
background: linear-gradient(0deg, rgba(249,253,254,1) 0%, rgba(47,152,230,0.9475140397956058) 36%, rgba(0,0,0,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#f9fdfe",endColorstr="#000000",GradientType=1);
}
h1{
font-size: 40px;
margin-bottom: 0px;
}
h2{
margin-top:10px;
}
p{
padding-right: 25px;
padding-left: 25px;
}
a{
text-decoration: none;
}
a:hover{
background-color: red;
}
/* First letter of every h2 stylings*/
h2::first-letter {
color: #603F8B;
font-size: xx-large;
}
/* list items bullet stylings*/
::marker {
color: #8155BA;
}
/* -------------Header styles-------------*/
/* Navbar styles */
nav {
display: block;
background-color: rgb(255, 255, 255, .8);
padding-top: 15px;
padding-bottom: 15px;
}
nav a{
color: rgb(0, 0, 0);
margin-right: 15px;
padding: 5px;
border-style: solid;
border-color: rgb(0, 0, 0);
}
/* Hero styles */
.hero{
background-color: rgba(255,255,255, .3);
padding-top: 25px;
padding-bottom: 25px;
max-width: 960px;
/* Centering on page */
margin-right: auto;
margin-left: auto;
display: block;
}
#sub-title{
margin: 0px;
padding-top: 5px;
padding-bottom: 5px;
}
/* -------------Main styles-------------*/
/* Containing main content and centering it on the page */
main{
background-color: rgba(255,255,255, .3);
max-width: 960px;
/* Centering on page */
margin-right: auto;
margin-left: auto;
display: block;
}
#about, #intro, #footer, .footer{
padding-top: 25px;
padding-bottom: 25px;
}
hr{
border-top-width: 3px;
}
.list-divider{
width: 75%;
/* Centering on page */
margin-right: auto;
margin-left: auto;
display: block;
/* Border styles */
border-top-color: #000;
border-top-style: solid;
border-top-width: 2px;
}
ul, ol{
display: inline-block;
}
ol {
list-style-type: upper-roman;
}
li{
text-align: left;
}
/* -------------Footer styles-------------*/
footer {
background: #000000;
color:#ffffff;
bottom: #ff0000;
}
a #footer {
margin: 30px;
}