-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
48 lines (42 loc) · 833 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
body {
background-color: whtie;
font-family:Arial, Helvetica, sans-serif
}
h1, h2, h3{
color: slateblue;
}
h1 {
font-variant: small-caps;
}
p {
width: 800px;
}
img {
width: 300px;
height:auto;
}
.topnav {
display: inline-block;
padding: 10px 20px;
font-size: 18px;
cursor: pointer;
text-align: center;
text-decoration: none;
outline: none;
color: #fff;
background-color: lightgoldenrodyellow;
border: none;
border-radius: 15px;
box-shadow: 0 7px #999;
}
.topnav:hover {background-color: lightsteelblue}
.topnav:active {
background-color: lightsteelblue;
box-shadow: 0 5px #666;
transform: translateY(4px);
}
.banner {
background-color: aliceblue;
max-width: 500px;
border-radius: 2px 15px 15px 2px
}