-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
113 lines (92 loc) · 1.61 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
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
109
110
111
112
113
@import url('https://fonts.googleapis.com/css2?family=Architects+Daughter&display=swap');
*{
margin: 50;
padding: 50;
font-family: 'Architects Daughter', cursive;
}
.header{
background-image: url('magician.jpg');
background-size: cover;
background-position: center top;
height: 900px;
text-align: center;
color: white;
font-weight: bold;
}
div{
background-image: url('paper.jpg');
background-size: cover ;
background-position: center;
text-align: center;
color: black;
}
.nav{
display: flex;
justify-content: space-between;
padding: 20px 40px;
font-size: 20px;
border-bottom: 1px solid black;
}
.nav ul{
list-style: none;
}
.nav li{
display: inline-block;
list-style: none;
padding: 5px 10px;
}
.nav li a:link {
text-decoration: none;
color:white;
}
.nav li a:visited {
text-decoration: underline;
color: white;
}
.nav li a:hover {
text-decoration: underline;
color: black;
}
.nav li a:active {
text-decoration: underline;
color: white;
}
.header h1{
font-size: 40px;
margin-top: 300px;
}
.header p{
font-size: 24px;
margin-top: 20px;
}
.main {
padding-top: 30px ;
}
.main h2{
text-align: center;
font-size: 35px ;
}
.wrapper{
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.container{
display: inline-block;
width: 400px;
padding-left: 50px;
}
.container h3{
font-size: 30px;
margin-bottom: 20px;
}
.container p{
font-size: 20px;
}
.container ul{
margin-top: 20px;
margin-left: 50px;
}
.container li{
font-size: 20px;
}