-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
51 lines (49 loc) · 904 Bytes
/
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
body {
background-color:rebeccapurple;
color:darkorange;
font-family: 'Rockwell Nova', sans-serif;
}
.greeting {
font-family: 'Rockwell Nova Light', sans-serif;
}
.intro, .greeting {
width: 80%;
text-align: center;
margin: auto;
}
.navbar h2 {
text-align: center;
font-size: 30px;
font-family: 'Rockwell Nova Light', sans-serif;
font-weight: 5;
margin: 10px;
word-spacing: 40px;
border-style: ridge;
border-radius: 10px 0 10px 0;
border-color: black;
width: 80%;
margin-left: 10%;
background-color: #008800;
}
a {
color: rgb(255, 115, 0);
}
a:visited {
color:green;
}
a:hover {
color: #00ff00;
}
a:active {
color:white;
}
hr {
border-radius: 10px;
height: 2px;
width: 90%;
background-color: rgba(30, 30, 30, 30%);
border-color: rgba(30, 30, 30, 30%);
}
.vl {
border: 2px ridge black;
}