-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
144 lines (141 loc) · 3.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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
/*### Primary*/
--Very-dark-blue-main-background: hsl(233, 47%, 7%);
--Dark-desaturated-blue-card-background: hsl(244, 38%, 16%);
--Soft-violet-accent: hsl(277, 64%, 61%);
--bg-violet: hsl(277deg, 100%, 50%, 0.42);
--bg-light-violet: hsl(293deg, 42%, 35%, 0.24);
/*Neutral*/
--White-main-heading-stats: hsl(0, 0%, 100%);
--Slightly-transparent-white-main-paragraph-: hsla(0, 0%, 100%, 0.75);
--Slightly-transparent-white-stat-headings: hsla(0, 0%, 100%, 0.6);
}
body {
background-color: var(--Very-dark-blue-main-background);
}
main {
display: flex;
flex-direction: column-reverse;
margin: 20% 5%;
}
article,
.img-mul {
width: 100%;
}
article {
border-radius: 0px 0px 10px 10px;
padding: 14% 10% 2% 10%;
background-color: var(--Dark-desaturated-blue-card-background);
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
article h1 {
color: var(--White-main-heading-stats);
font-family: "Inter", sans-serif;
font-size: 27px;
}
article h1 > span {
color: var(--Soft-violet-accent);
}
article p {
color: var(--Slightly-transparent-white-main-paragraph-);
font-family: "Lexend Deca", sans-serif;
padding: 0 2%;
line-height: 25px;
margin: 6% 0 20% 0;
}
.coisas ul {
list-style: none;
}
.coisas li {
margin-bottom: 40%;
}
.coisas ul li > h1 {
font-size: 24;
}
.coisas ul li > span {
color: var(--Slightly-transparent-white-stat-headings);
text-transform: uppercase;
font-family: "Inter", sans-serif;
font-size: 11px;
letter-spacing: 1.5px;
}
.img-mul {
background: url(./images/image-header-desktop.jpg);
background-size: cover;
background-repeat: no-repeat;
width: 100%;
height: 260px;
border-radius: 10px 10px 0px 0px;
}
.cor {
background: var(--bg-violet);
height: 100%;
}
.cor2 {
background: var(--bg-light-violet);
height: 100%;
mix-blend-mode: color-burn;
}
.attribution {
font-size: 11px;
color: rgb(145, 160, 160);
margin: 0 auto;
font-size: 0.75rem;
text-align: center;
}
.attribution a {
color: hsl(229, 35%, 94%);
}
@media screen and (min-width: 1050px) {
body {
display: flex;
flex-direction: column;
justify-content: center;
height: calc(100vh - 1px);
}
main {
width: 1040px;
flex-direction: row;
margin: auto;
}
article {
width: 540px;
height: 446px;
border-radius: 10px 0px 0px 10px;
padding: 7% 10% 0% 4%;
background-color: var(--Dark-desaturated-blue-card-background);
display: flex;
flex-direction: column;
align-items: flex-start;
text-align: start;
}
article h1 {
font-size: 35px;
}
article p {
padding: 0;
line-height: 26px;
}
.coisas ul {
display: flex;
}
.img-mul {
width: 540px;
height: 446px;
border-radius: 0px 10px 10px 0px;
}
.coisas ul li > h1 {
font-size: 25px;
}
.coisas li {
margin: 0 24% 0 0;
}
}