-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexplore.css
More file actions
139 lines (121 loc) · 2.64 KB
/
explore.css
File metadata and controls
139 lines (121 loc) · 2.64 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
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
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&family=Space+Grotesk:wght@300..700&display=swap');
/* body, config padrão */
/* Cormorant e Space Grotesk */
:root {
--cinza: #fcf8f8;
--amarelo: #d4af37;
--verde: #6CC959;
--azul: #26daf1; /* 5733F5 40ce8c EEEDF2 */
--verm: #f54f57;
--preto: #22252A; /* 1C1C1C */
--roxo1: rgb(73, 70, 92);
--roxo2: #24233b;
}
body {
}
#verm {
color: #f54f57;
font-style: italic;
}
#ama {
color: var(--amarelo);
font-style: italic;
}
#azu {
color: var(--azul);
}
#verd {
color: var(--verde);
font-style: italic;
}
a {
color: var(--cinza);
font-size: 20px;
text-decoration: none;
font-family: "Space Grotesk";
display:inline;
width: 150px;
box-shadow: inset 0 0 0 0 var(--azul);
overflow: visible;
-webkit-transition: all ease 0.5s;
-moz-transition: all ease 0.5s; transition: all ease 0.5s;
}
a:hover {
background: var(--azul);
color: var(--preto);
font-weight: 400;
box-shadow: inset 0 50px 0 0 var(--azul);
color:black;
}
.card {
width: 350px;
height: 510px;
margin: 200px auto;
background-color: #24233b;
border-radius: 8px;
z-index: 1;
box-shadow: 0px 10px 10px rgb(73, 70, 92);
transition: 0.5s;
}
.card:hover {
transform: translateY(-7px);
box-shadow: 0px 10px 10px black;
}
.tools {
display: flex;
align-items: center;
padding: 9px;
}
.circle {
padding: 0 4px;
}
.box {
display: inline-block;
align-items: center;
width: 13px;
height: 13px;
padding: 1px;
border-radius: 50%;
}
.red {
background-color: #ff605c;
}
.yellow {
background-color: #ffbd44;
}
.green {
background-color: #00ca4e;
}
.links {
background-color: rgb(73, 70, 92);
width: 350px;
height: 432px;
resize: none;
border-radius: 5px;
border: none;
color: white;
padding: 10px;
}
h1 {
font-size: 25px;
font-family: 'Space Grotesk';
font-weight: 400;
color: var(--verm);
padding-left: 10px;
}
ul {
line-height: 60px;
list-style-type: none;
padding-left: 15px;
padding-top: 0px;
}
.card__content {
display: flex;
align-items: center;
padding: 10px;
}
@media screen and (max-width: 1020px) {
.card {
margin-top: 20%;
}
}