Newer
Older
#home-page {
display: flex;
flex-direction: column;
.section-title {
padding: 10px;
margin: 0;
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
.page-header {
.philo-bubbles {
@include flex-center;
flex-wrap: wrap;
gap: 40px;
@media screen and (max-width: $screen_m) {
gap: 20px;
}
margin: 30px 20px;
li {
border-radius: 100%;
@include flex-center;
background-color: $light_0;
* {
color: $medium_grey;
}
width: 100px;
height: 100px;
@media screen and (max-width: $screen_s) {
width: 75px;
height: 75px;
* {
font-size: 12px;
}
}
&:first-child {
background-color: $medium_grey;
* {
color: white;
}
}
&:last-child {
background-color: $dark_1;
* {
color: $light_1;
}
}
}
}
}
@import "./home-page-components/news-articles.scss";
.theme-card {
display: flex;
flex-direction: column;
width: 100%;
cursor: pointer;
.card-img {
width: 100%;
height: 240px;
overflow: hidden;
@include flex-center-col;
position: relative;
img {
position: absolute;
}
}
.card-title {
h2 {
margin: 0;
text-align: center;
padding: 10px 20px;
color: $blue_2;
text-align: center;
}
}
transition: transform 0.3s;
&:hover {
transform: scale(1.03);
}
}
}
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
.kuadrado-values {
background-image: url("/assets/images/wallpaper_binary_light.png");
padding: 100px 0 120px;
*:not(a, blue) {
color: $light_0;
}
h2 {
@include flex-center;
margin: 0 auto 60px;
width: 120px;
height: 120px;
background-image: url("/assets/images/wallpaper_binary.png");
border-radius: 100%;
color: $blue_3;
}
ul.values-list {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 30px;
li {
background-image: url("/assets/images/wallpaper_binary.png");
padding: 30px 20px 40px;
h3 {
text-align: center;
}
p {
text-align: justify;
}
}
}
}
grid-template-columns: 1fr;
gap: 40px;
.theme-card {
.card-img {
height: 300px;
img {
min-width: unset;
height: 100%;
}
}
.card-title {
h2 {
padding: 5px 20px;
}
}
.card-description {
}
transition: transform 0.3s;
&:hover {
transform: none;
}
}
}
.kuadrado-values {
ul.values-list {
grid-template-columns: 1fr;
}
}
@media screen and (max-width: $page_contents_center_width) {