-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathhw1.css
More file actions
53 lines (47 loc) · 847 Bytes
/
hw1.css
File metadata and controls
53 lines (47 loc) · 847 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
49
50
51
52
53
header {
background-image: linear-gradient(#ff1d58, #f75990, #fff685, #00ddff, #0049b7);
}
h1,
h2 {
color: #000080;
text-transform: uppercase;
}
h1 {
color: #ffffff;
text-align: center;
}
aside {
display: none;
}
a {
color: #000000;
background-color: #c5c5c5;
}
section {
background-color: #808080;
font-weight: 520;
}
nav{
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
nav a{
margin-right:5%;
text-decoration: none;
background: none;
font-weight: 900;
transition: all ease 0.3s;
}
nav a:hover{
color:#fff;
transform: scale(1.3);
transition: all ease-in 0.3s;
}
container {
display: flex;
align-items: center;
justify-content: center;
font-size: 2rem;
}