-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (108 loc) · 2.13 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
114
115
116
117
118
119
120
121
122
123
124
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body{
background-color:#2B2922;
}
.navbar{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items:flex-end;
}
.list{
display: flex;
flex-direction: row;
justify-content: space-between;
list-style-type: none;
}
.logo{
margin-left: 5rem;
margin-top: 2rem;
}
.list-items{
margin-left: 3rem;
font-size: 1.2rem;
font-family:'Montserrat', sans-serif ;
color: #ffffff;
opacity: 0.7;
font-weight:300;
}
.list-items:hover{
cursor: pointer;
opacity: 1;
font-weight: 500;
}
.button-1{
margin-right: 6rem;
background-color: transparent;
color: #A08F36;
border-color:#A08F36;
border-style: solid;
font-family: 'Montserrat', sans-serif;
font-size: 1.2rem;
border-radius: 10px;
padding: 8px 24px;
}
.button-1:hover{
cursor: pointer;
background-color: #A08F36;
color: #2B2922;
font-weight: bold;
transition-duration: .30s;
}
.main-text{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 4rem;
}
.big-text h1{
margin-left: 5rem;
margin-top: 4rem;
font-size: 3.5rem;
font-family: 'Montserrat';
font-weight: 700;
color: #ffffff;
}
.small-text h4{
margin-top: 5rem;
color: #ffffff;
font-weight: 300;
font-family: 'Montserrat';
padding-left: 9rem;
padding-right: 15rem;
line-height: 30px;
}
.big-image{
width: 100%;
height: auto;
}
.arrows{
position:absolute;
top: 160%;
right: 0;
margin-top: 10px;
margin-right: 20px;
}
.fa-solid{
padding: 8px 12px;
color: #A08F36;
font-size: 2rem;
background-color: transparent;
border-style: solid;
border-color: #A08F36;
border-radius: 6px;
margin-bottom: 20px;
}
.fa-solid:hover{
cursor: pointer;
color: #1d1d1d;
background-color: #A08F36;
border-color: transparent;
transition-duration: .30s;
}