-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
125 lines (106 loc) · 1.82 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
125
@font-face {
font-family:"Avenir Roman" ;
src: url("avenir-roman.ttf") format("truetype");
}
* {
margin: 0;
padding: 0;
}
body {
background: url("img/bg.jpg") no-repeat top center;
background-size: cover;
height: 100vh;
display: flex;
align-items: center;
font-family: "Avenir Roman" , sans-serif;
}
.btn {
font-size: 15px;
text-transform: uppercase;
letter-spacing: 1.5px;
text-align: center;
color: #f9f9f9;
background: rgba(0, 0, 0, 0.6);
text-decoration: none;
padding: 8px 16px;
border: 1px solid #f9f9f9;
border-radius: 4px;
display: inline-block;
position: absolute;
top: 16px;
right: 32px;
transition: 0.2s ease;
}
.btn:hover {
background: #f9f9f9;
color: #000;
}
img.franquias {
max-width: 600px;
position: absolute;
bottom: 25px;
}
img.logo {
max-width: 160px;
}
.hero-content {
margin-top: -21px;
padding-left: 80px;
}
.hero-content > p {
font-size: 12px;
line-height: 18px;
color: rgba(192, 192, 192, 0.8);
margin-top: 16px;
}
h1 {
font-size: 43px;
line-height: 53px;
color: #f9f9f9;
margin:20px 0 30px 0;
}
.precos-container {
display: flex;
}
.preco span {
font-weight: 700; /*bati cabeça por ter colodo em PX*/
font-size: 30px;
line-height: 36px;
color: #f9f9f9;
}
.preco {
width: 300px;
max-width: 100%;
color: rgba(192, 192, 192, 0.8);
}
.preco:first-child {
display: grid;
}
.preco:first-child a {
align-self: end;
}
.preco a {
padding: 16.5px 14px;
background: #0063e5;
display: block;
border-radius: 4px;
text-align: center;
color: #f9f9f9;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
font-size:18px;
transition:0.2s ease;
}
.preco a:hover {
background: #0483ee;
}
.preco p:first-child {
margin: 0;
}
.preco p {
margin: 16px 0;
}
.preco + .preco {
margin-left: 32px;
}