-
Notifications
You must be signed in to change notification settings - Fork 118
/
style.css
80 lines (64 loc) · 1.28 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
* {
margin: 0;
border: 0;
padding: 0;
}
.navbar {
min-height: 150px;
max-width: 100%;
/* background-color: black;*/
display: flex;
justify-content: space-between;
align-items: center;
}
header {
min-height: 100vh;
max-width: 100%;
background-image: url(https://tse3.mm.bing.net/th?id=OIP.lYslLxm3sZkmg85A4YkykwHaDl&pid=Api&P=0&h=180);
background-repeat: no-repeat;
background-position: right;
display: flex;
flex-direction: column;
gap: 150px;
}
.logo img {
height: 150px;
width: 150px;
margin: 10px;
}
ul {
display: flex;
}
li {
list-style: none;
}
ul li a {
text-decoration: none;
color: black;
background: peachpuff;
padding: 10px 20px;
margin: 10px;
border: 2px solid blueviolet;
font-weight: 1000;
font-variant: small-caps;
letter-spacing: 1px;
transition: .5s;
}
ul li a:hover {
background: rgb(102, 36, 105);
border-radius: 20px;
letter-spacing: 2px;
color: black;
}
h1 {
color: black;
text-align: center;
font-size: 90px;
}
lucky {
color: deeppink;
font-size: 100px;
font-weight: 1000;
font-variant: small-caps;
letter-spacing: 1.5px;
}