-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (102 loc) · 1.78 KB
/
Copy pathstyle.css
File metadata and controls
107 lines (102 loc) · 1.78 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
106
107
* {
margin: 0;
padding: 0;
box-sizing: inherit;
}
html {
font-size: 18px;
}
@media (min-width: 1024px) and (max-width: 1279px) {
html {
font-size: 16px;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
html {
font-size: 14px;
}
}
@media (max-width: 767px) {
html {
font-size: 12px;
}
}
.container {
max-width: 1280px;
margin: 0 auto;
}
@media (max-width: 767px) {
.container {
max-width: 100vw;
padding: 0 0.5rem;
}
}
@media (min-width: 768px) and (max-width: 1023px) {
.container {
max-width: 100vw;
padding: 0 1rem;
}
}
@media (min-width: 1024px) and (max-width: 1279px) {
.container {
max-width: 100vw;
padding: 0 1.5rem;
}
}
.carousel {
padding: 2rem;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
flex-direction: column;
background-color: #f0edec;
color: #343059;
}
.carousel-intro {
text-align: center;
padding: 2rem;
}
.carousel-intro-title {
padding: 1rem;
}
.carousel-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.carousel-card {
padding: 0 2rem 0 2rem;
}
.carousel-card-image {
background-image: url("./assets/pong.jpg");
background-size: cover;
background-repeat: no-repeat;
width: 5rem;
height: 5rem;
border-radius: 5px;
box-shadow: 2px 2px 5px #949393;
}
.carousel-card-title {
text-align: center;
}
.carousel-button {
padding: 2rem;
font-style: uppercase;
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
.carousel-button-icon {
background-image: url("./assets/arrow_right.png");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
width: 2rem;
height: 1rem;
}
.header {
padding: 1rem;
background-color: #7521d5;
}
/*# sourceMappingURL=style.css.map */