-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
82 lines (76 loc) · 1.29 KB
/
Copy pathstyle.css
File metadata and controls
82 lines (76 loc) · 1.29 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
82
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Red Rose", cursive;
}
body {
width: 100%;
height: 100%;
background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
url("./assets/background.png");
background-size: cover;
background-attachment: fixed;
}
/* Navbar */
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 60px;
margin-top: 35px;
}
.list {
display: flex;
align-items: center;
list-style: none;
gap: 70px;
font-family: "Red Rose", cursive;
font-size: larger;
font-weight: bold;
color: #ffc233;
line-height: 32px;
}
.logo {
width: 150px;
}
.logo,
.list-item {
cursor: pointer;
}
.button {
color: #ffffff;
background-color: #ff505f;
padding: 13px 40px;
font-family: "Red Rose";
font-size: x-large;
font-weight: 500;
border: none;
border-radius: 2px;
cursor: pointer;
}
/* main section */
.main-section{
max-width: 800px;
margin: 0 auto;
text-align: center;
margin-top: 70px;
}
.main-heading{
font-family: 'Dela Gothic One', cursive;
font-size: 70px;
color: #ffc233;
font-weight: 400;
line-height: 80px;
}
.main-button{
margin-top: 30px;
}
.bottom-logo{
position: absolute;
bottom: 10px;
right: 10px;
}
.bottom-logo img{
width: 70%;
}