-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
131 lines (82 loc) · 1.31 KB
/
Copy pathstyle.css
File metadata and controls
131 lines (82 loc) · 1.31 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
*{
margin: 0;
padding:0;
}
body{
background:url(background.jpg) no-repeat top center;
background-size:cover;
height: 100vh;
display: flex;
align-items: center;
font-family: "Avenir Roman", sans-serif;
}
.img-logos{
max-width:600px;
position:absolute;
bottom: 25px;
}
.logo{
max-width: 160px;
}
.hero-content{
margin-top: -10px;
padding-left: 80px;
}
.hero-content > p{
color: rgba(192, 192, 192, 0.8);
font-size: 12px;
line-height: 18px;
margin-top: 16px;
}
h1{
font-size: 18px;
line-height: 53px;
color: #f9f9f9;
margin: 20px 0 30px 0;
}
.precos-container{
display: flex;
font-size: 30px;
}
.preco span{
font-weight:700px;
font-size:30px;
line-height: 36px
color: #f9f9f9;
}
.preco{
width: 300px;
max-width: 1000px;
color: rgba(192, 192, 192, 0.8);
}
.preco first-child{
display: grid;
}
.preco first-child a{
align-self: end;
}
.preco a {
padding-top: 16.5px 14px;
background:#0063e5;
display: block;
border-radius: 4px;
font-size: 18px;
text-align: center;
color: #f9f9f9;
text-decoration: none;
text-transform: uppercase;
letter-spacing: 1px;
transition: .2s ease;
}
.preco a:hover{
background:#0483ee;
}
.preco p: first-child{
margin:0;
}
.preco p{
margin: 16px 0;
}
.preco + .preco{
margin-left: 32px;
}