-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (58 loc) · 1.02 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-image: url('backgroundIMG2.jpg');
background-position: center;
background-repeat: no-repeat;
background-size: cover;
height: 100%;
width: 100%;
}
header{
height: 70px;
background-color: white;
display: flex;
justify-content: space-around;
align-items: center;
}
ul{
display: flex;
list-style-type: none;
align-items: center;
}
ul li {
padding: 0 10px;
}
ul li a{
text-decoration: none;
color: black;
}
.dropdown {
border-style: none;
}
#tittle {
color: black;
justify-content: center;
display: flex;
letter-spacing: 10px;
font-size: 50px;
padding-top: 200px;
}
#paragraph {
color: black;
justify-content: center;
display: flex;
letter-spacing: 1px;
font-size: 30px;
}
#sign-in {
display: flex;
color: black;
justify-content: center;
}
#button {
padding: 10px 20px;
}