-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
49 lines (39 loc) · 746 Bytes
/
style.css
File metadata and controls
49 lines (39 loc) · 746 Bytes
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
#title{
font-family: Georgia, 'Times New Roman', Times, serif;
}
#h1{
background-color: maroon;
color: gold;
padding: 40px;
text-align: center;
}
.button{
background-color: maroon;
color: gold;
text-align: center;
display: inline-block;
font-size: medium;
}
#content p{
background-color: maroon;
color: gold;
border-radius: 2px;
padding: 5px;
}
a {
border-top: 5px solid yellow;
border-bottom: 5px solid yellow;
color: black;
}
#row2 {
justify-content: center;
align-items: center;
display: flex;
}
a:hover {
color: hotpink;
transition: .5s;
background-color: navy;
border-top: 5px solid red;
border-bottom: 5px solid red;
}