-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
117 lines (102 loc) · 1.99 KB
/
styles.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
body {
display: flex;
flex-direction: column;
justify-content: center;
background: linear-gradient(to bottom, #333333, #737373, #ffffff);
font-family: Poppins, sans-serif;
overflow-x: hidden;
min-height: 150dvh;
margin: 0;
}
/* Estilos gerais para a navbar */
.navbar {
position: fixed;
top: 20px;
left: 50%;
transform: translateX(-50%);
width: 90%;
padding: 3px 20px; /* paddin vertiacal (lembre-se disso)*/
background-color: rgba(86, 85, 85, 0.5);
border-radius: 50px;
backdrop-filter: blur(22px);
opacity: 0;
animation: slideDownBlur 1.2s ease-in-out 0.5s forwards;
z-index: 999;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
/* Animação da barra */
@keyframes slideDownBlur {
0% {
top: -100px;
opacity: 0;
backdrop-filter: blur(0px);
}
100% {
top: 20px;
opacity: 1;
backdrop-filter: blur(10px);
}
}
/* Textos */
h1 {
margin-top: 150px;
text-align: center;
color: azure;
font-size: 40px;
padding: 40px 0;
}
.GalactHD {
padding: 1rem;
cursor: pointer;
border-radius: 40px;
}
p {
text-align: center;
font-size: 22px;
color: azure;
margin: 10px;
}
.csharptech {
text-align: center;
color: azure;
font-size: 30px;
}
.maindiv {
text-align: center;
margin: auto;
padding: auto;
}
.frontiendi {
transition: all 0.3s ease;
padding: 20px;
}
.csharp-container {
transition: all 0.3s ease;
}
.csharp-div {
text-align: center;
margin: auto;
padding-bottom: 335px;
}
/* Animações dos textos e imagens */
h1 {
opacity: 0;
animation: fadeIn 1.9s ease-in-out forwards;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
p {
opacity: 0;
animation: fadeIn 2.5s ease-in-out forwards;
}
.csharp-container:hover, .frontiendi:hover {
transform: scale(1.05);
}