-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlumniCSS.css
More file actions
87 lines (80 loc) · 1.48 KB
/
AlumniCSS.css
File metadata and controls
87 lines (80 loc) · 1.48 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
html
{
border-style: solid;
border-width: 40px;
border-color: black;
}
body
{
font-family: "Comic Sans MS", cursive, sans-serif;
background-color: #ffffff;
}
h1
{
text-align: center;
font-size: 120px;
color: #f3d352;
}
h2
{
text-align: left;
font-size: 60px;
color: #f3d352;
padding-up: 30px;
}
h3
{
text-align: left;
font-size: 40px;
color: #000000;
}
pre
{
font-family: "Comic Sans MS", cursive, sans-serif;
font-size: 20px;
}
.rectangle {
height: 3px;
width: 1344px;
background-color: #f3d352;
}
.rectangle2 {
height: 3px;
width: 600px;
background-color: #f3d352;
}
.rectangle3 {
height: 3px;
width: 1344px;
background-color: #000000;
}
.column {
float: left;
width: 50%;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
/* Style the top navigation bar */
.navbar {
font-size: 40px;
overflow: hidden; /* Hide overflow */
/* background-color: #f3d352; /* white background color */
}
/* Style the navigation bar links */
.navbar a {
float: left; /* Make sure that the links stay side-by-side */
display: block; /* Change the display to block */
color: black; /* Black text color */
text-align: center; /* Center the text */
padding-right: 50px;
text-decoration: none; /* Remove underline */
}
/* Change color on hover/mouse-over */
.navbar a:hover {
background-color: #faf7a3 ; /* white background color */
color: black; /* Black text color */
}