-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
117 lines (100 loc) · 2.04 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
@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:wght@400;600&display=swap');
:root {
--font-primary:'Bai Jamjuree', sans-serif;
--strong-cyan: hsl(171, 66%, 44%);
--light-blue: hsl(233, 100%, 69%);
--dark-grayish-blue: hsl(210, 10%, 33%);
--grayish-blue: hsl(201, 11%, 66%);
}
/* Estándar */
*,*::before,*::after {
box-sizing: border-box;
padding: 0;
margin: 0;
}
/* Generales */
body {
font-size: 18px;
font-family: var(--font-primary);
}
button,input,select,textarea {
font-family: inherit;
}
.container {
max-width: 1440px;
margin: 0 auto;
}
.btn {
font-size: 18px;
max-width: 225px;
width: 100%;
height: 54px;
border-radius: 30px;
border:none;
color: white;
font-weight: 600;
cursor: pointer;
}
.btn-green {
background-color: var(--strong-cyan);
box-shadow: 0px 3px 0px hsl(171, 66%, 38%);
}
.btn-blue {
background-color: var(--light-blue);
box-shadow: 0px 3px 0px hsl(233, 66%, 60%);
}
/* Header */
.header__container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 710px;
background-image: url("./images/bg-header-desktop.png");
background-repeat: no-repeat;
background-position: top center;
}
.header__logo {
margin-bottom: 55px;
}
.header__presentation {
margin-bottom: 55px;
text-align: center;
}
.header__presentation h1{
font-size: 2.8rem;
color:var(--dark-grayish-blue);
}
.header__presentation p {
max-width: 680px;
margin-top: 24px;
font-size: 20px;
color:var(--grayish-blue);
line-height: 1.5;
}
.header__buttons {
display: flex;
gap: 1rem;
max-width: 680px;
width: 100%;
justify-content: center;
flex-wrap: wrap;
}
/* Section keeptrack */
.section__keeptrack__top {
text-align: center;
/* display: flex;
flex-direction: column;
align-items: center; */
}
.section__keeptrack__top h2 {
margin-bottom: 20px;
font-size: 2.2rem;
color:var(--dark-grayish-blue);
}
.section__keeptrack__top p {
max-width: 695px;
margin: 0 auto;
color:var(--grayish-blue);
line-height: 1.5;
}