forked from hydecorp/hydejack
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathactividades.css
More file actions
75 lines (61 loc) · 1.3 KB
/
Copy pathactividades.css
File metadata and controls
75 lines (61 loc) · 1.3 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
@import url('https://fonts.googleapis.com/css2?family=Sancreek&display=swap');
h1,
h1.title,
.quarto-title .title {
font-family: 'Sancreek', cursive !important;
text-align: center !important;
font-size: 3rem !important;
}
.info-card {
background: linear-gradient(135deg, #ffffff, #f3f7ff);
border-radius: 20px;
padding: 25px;
margin: 20px 0;
text-align: center;
box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
max-width: 700px;
margin-left: auto;
margin-right: auto;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.info-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
.info-card h2 {
color: #CD5C74;
font-size: 2rem;
margin-bottom: 10px;
}
.info-card p {
font-size: 1.1rem;
color: #333;
margin-bottom: 20px;
}
.info-card .buttons {
display: flex;
justify-content: center;
gap: 15px;
}
.info-card a.button-link {
display: inline-block;
padding: 10px 20px;
border-radius: 12px;
text-decoration: none;
font-weight: bold;
transition: background 0.3s ease;
}
.info-card a.button-meetup {
background: #f64060;
color: white;
}
.info-card a.button-meetup:hover {
background: #c42d48;
}
.info-card a.button-github {
background: #333;
color: white;
}
.info-card a.button-github:hover {
background: #000;
}