-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (80 loc) · 1.2 KB
/
style.css
File metadata and controls
81 lines (80 loc) · 1.2 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
@import url("https://fonts.googleapis.com/css2?family=Dongle:wght@300&display=swap");
body {
margin: 0;
padding: 0;
font-family: "Dongle", sans-serif;
font-size: 30px;
}
header {
background-color: gray;
color: white;
padding: 20px;
text-align: center;
}
nav {
background-color: #444;
color: #fff;
padding: 10px;
text-align: center;
}
nav ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
}
nav li {
display: inline-block;
margin-right: 10px;
}
nav li a {
color: #fff;
text-decoration: none;
padding: 5px;
}
nav li a:hover {
background-color: red;
}
main {
padding: 20px;
margin: 20px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #faf2f2;
min-height: 500px;
}
footer {
background-color: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.list {
font-size: 25px;
margin: 10px;
}
h1 a:visited {
color: rgb(20, 19, 19);
}
h1 a:hover {
color: aqua;
}
.mypic1 {
text-align: center;
}
.mypic1 img {
display: inline;
width: 350px;
margin: 25px;
border-radius: 10%;
}
.mypic2 {
text-align: center;
}
.mypic2 img {
display: inline;
width: 390px;
height: 300px;
margin: 25px;
border-radius: 10%;
}