-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
67 lines (67 loc) · 1.14 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
/* CSS Reset */
body {
font-family: "Rowdies", cursive;
color: aliceblue;
margin: 0px;
padding: 0px;
background: url("img/bg.jpg");
}
.left {
display: inline-block;
position: absolute;
left: 34px;
top: 20px;
border: 2px solid red;
}
.left img {
width: 136px;
filter: invert(100%);
}
.left div {
text-align: center;
font-size: 16px;
}
.mid {
display: block;
width: 33%;
margin: 20px auto;
border: 2px solid green;
}
.right {
position: absolute;
right: 34px;
top: 20px;
display: inline-block;
border: 2px solid gold;
}
.navbar {
display: inline-block;
}
.navbar li {
display: inline-block;
font-size: 24px;
}
.navbar li a {
color: aliceblue;
text-decoration: none;
padding: 32px 24px;
}
.navbar li a :hover,
.navbar li a.active {
text-decoration: underline;
color: gray;
}
.btn {
font-family: "Rowdies", cursive;
background-color: black;
color: aliceblue;
margin: 0px 9px;
padding: 4px 16px;
border: 2px solid gray;
border-radius: 10px;
font-size: 20px;
cursor: pointer;
}
.btn:hover {
background-color: rgb(54, 49, 49);
}