-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
60 lines (51 loc) · 1.16 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
/*
Theme Name: experis theme
Theme URI:
Description: Esta es una prueba técnica para aplicar al trabajo de front-end.
Author: Rafael Castillo
Author URI: #
Version: 1.0
License: Licencia_del_tema
License URI: URL_de_la_licencia
Tags: bootstrap, one single page, gutember, stripe, javascript
*/
/* Custom Brand Colors and styles */
:root {
--color-blanco: #ffffff;
--color-negro: #000000;
--color-azul: #007bff;
--font-size-body: 16px;
--font-size-titulo: 32px;
--font-size-heading: 45px;
--border-radius: 1rem; /* 16px */
--espacio: 20px;
}
/* Basic Reset */
body {
font-family: system-ui, -apple-system, 'Inter', sans-serif;
font-size: var(--font-size-body);
color: var(--color-negro);
}
.card {
border-radius: var(--border-radius);
padding: var(--espacio);
}
/* some custom styles just to add better UX */
.feature-icon {
width: 4rem;
height: 4rem;
border-radius: .75rem;
}
.feature-icon-small {
width: 3rem;
height: 3rem;
}
.card-cover{
background-size: cover;
background-blend-mode: overlay;
opacity: .9;
transition: all .3s ease;
}
.card-cover:hover{
opacity: 1;
}