-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle3.css
More file actions
108 lines (89 loc) · 1.83 KB
/
Copy pathstyle3.css
File metadata and controls
108 lines (89 loc) · 1.83 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/* Miguel Lopez */
@import url('https://fonts.googleapis.com/css2?family=Kaushan+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Yusei+Magic&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');
body {
font-size: 14px;
}
html {
background-color: lightgray;
}
div#title h1 {
font-family: 'Kaushan Script', cursive;
font-size: xx-large;
position: relative;
animation: mymove 5s infinite;
}
@keyframes mymove {
from {
left: 0px;
}
to {
left: 200px;
}
}
div#title p {
font-family: 'Roboto', sans-serif;
font-weight: bold;
}
ul#menuBarList {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: rgb(110, 109, 109);
}
li.menuBarItem {
font-family: 'Roboto', sans-serif;
font-weight: bold;
font-size: large;
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
float: left;
}
li.menuBarItem:hover {
background-color: #111;
cursor: pointer;
}
#text p {
font-family: 'Roboto', sans-serif;
}
#text>p:nth-child(2)>a:hover {
background-color: #555;
}
#text p a {
background-color: green;
font-weight: bold;
border-radius: 6px;
color: white;
padding: 5px 5px;
text-decoration: none;
text-transform: uppercase;
margin-top: 10px;
display: inline-block;
}
div#text h1, h2 {
font-family: 'Yusei Magic', sans-serif;
}
div#text li {
font-family: 'Roboto',
sans-serif;
}
#sidebar {
background: linear-gradient(to bottom, green, gray);
color: white;
padding: 10px;
}
#sidebar>h3 {
font-family: 'Yusei Magic', sans-serif;
}
#sidebar>p {
font-family: 'Roboto', sans-serif;
}
#bottom {
font-family: 'Roboto',
sans-serif;
}