-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
80 lines (67 loc) · 1.18 KB
/
style.css
File metadata and controls
80 lines (67 loc) · 1.18 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
font: 15px/1.2 'Roboto', sans-serif !important;
background-color: gainsboro;
margin: .5rem;
text-align: center;
overflow-x: hidden;
}
nav {
border: 2px solid #333;
border-radius: 2rem;
margin: 0 auto 1rem;
max-width: 600px;
font-size: 3rem;
line-height: 7rem;
background-color: rgba(218, 165, 32, 0.014);
}
h2 {
padding: 1rem;
background-color: gold;
border-radius: 2rem 2rem 0 0;
}
ul {
list-style-type: none;
}
li{
border-top: 1px dashed #333;
}
li a {
display: block;
}
ul li a,
ul li a:visited {
text-decoration: none;
color: #333;
}
ul li a:hover,
ul li a:focus {
background-color: #333;
color: rgb(255, 202, 127);
cursor: pointer;
}
ul li:last-child a {
border-radius: 0 0 2rem 2rem;
}
footer {
width: 100%;
background-color: aquamarine;
border-radius: 2rem;
}
footer {
width: 100%;
height: 35px;
display: flex;
align-items: center;
justify-content: center;
position: relative;
transition: all 2s ease;
}
footer:hover {
position: absolute;
transform: scale(1.3);
}