-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyleC.css
More file actions
138 lines (138 loc) · 3.07 KB
/
Copy pathstyleC.css
File metadata and controls
138 lines (138 loc) · 3.07 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
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
* {
margin: 0;
padding: 0;
font-family: 'Poppins', sans-serif;
}
.container {
height: 100vh;
width: 100%;
background-image: url(background.jpg);
background-position: center;
background-size: cover;
padding-right: 3%;
padding-left: 5%;
box-sizing: border-box;
position: relative;
}
.header {
width: 100%;
height: 15vh;
margin: auto;
display: flex;
align-items: center;
}
.logo {
width: 200px;
margin-top: 20px;
cursor: pointer;
}
nav {
flex: 1;
padding-left: 450px;
}
nav ul li {
display: inline-block;
list-style: none;
margin: 0 15px;
}
nav ul li a {
text-decoration: none;
color: #fff;
font-family: 'Poppins', sans-serif;
text-transform: uppercase;
font-size: 15px;
font-weight: 600;
}
#btn1 {
text-transform: uppercase;
background: linear-gradient(to bottom, #be0707 2%, #fdfdfd 100%);
border-radius: 30px;
border: 1px solid #efeff0;
cursor: pointer;
color: #fff;
font-family: 'Poppins', sans-serif;
font-size: 17px;
font-weight: 700;
padding: 12px 20px;
margin: 10px;
text-decoration: none;
box-shadow: 1px 4px 12px rgba(94,28,68,.15);
text-shadow: 0px 1px 0px #f4f5f7;
}
#btn2 {
text-transform: uppercase;
background: linear-gradient(to bottom, #be0707 2%, #fff 100%);
border-radius: 30px;
border: 1px solid #cbcbcb;
cursor: pointer;
color: #f8f8f8;
font-family: 'Poppins', sans-serif;
font-size: 17px;
font-weight: 700;
padding: 12px 20px;
margin: 10px;
text-decoration: none;
box-shadow: 1px 4px 12px rgba(94,28,68,.15);
text-shadow: 0px 1px 0px #cbcbcb;
}
.btn:hover {
box-shadow: 3px 8px 22px rgba(94,28,68,.15);
transform: scale(1.1);
transition: .2s ease-in-out;
}
.content {
position: relative;
display: flex;
width: 100%;
align-items: center;
justify-content: space-between;
}
.content .text {
position: relative;
max-width: 600px;
}
.content .text h1 {
font-family: 'Poppins', sans-serif;
text-transform: uppercase;
font-weight: 800;
margin-top: 80px;
line-height: 1.5em;
letter-spacing: .1em;
font-size: 40px;
color: rgb(250, 250, 250);
}
.content .text h1 span {
font-size: 50px;
}
.content .text p {
font-size: 17px;
font-weight: 600;
letter-spacing: .1em;
margin-top: 40px;
color: #330d0d;
}
.btn3 {
background: linear-gradient(to bottom, #cbcbcb 2%, #fff 100%);
margin-top: 60px;
margin-left: 140px;
padding: 15px 30px;
text-align: center;
transition: .5s;
border: none;
outline: none;
text-transform: uppercase;
color: #1b1b1b;
font-size: 20px;
font-weight: 700;
border-radius: 30px;
box-shadow: 1px 4px 12px rgba(94,28,68,.15);
}
.cola {
display: flex;
height: 100%;
position: absolute;
width: 600px;
margin-top: 50px;
padding-left: 800px;
justify-content: flex-end;
}