-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
151 lines (129 loc) · 2.69 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
145
146
147
148
149
150
151
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
height: 100%; /* Para garantir que o corpo tenha altura total */
}
body {
display: flex;
flex-direction: column;
font-family: 'Roboto', sans-serif;
background-color: #182319;
color: #fff;
margin: 0;
}
.container {
flex: 1; /* Faz o contêiner principal expandir para ocupar o espaço disponível */
display: flex;
flex-direction: column;
justify-content: flex-start;
}
.cabecalho {
display: flex;
flex-direction: column; /* Changed from row to column for vertical stacking */
justify-content: center; /* Center content horizontally */
align-items: center; /* Center content vertically */
margin: 2em 5%;
gap: 2em;
text-decoration: none;
color: inherit;
}
.cabecalho h1 {
font-size: 1.5rem;
text-align: center; /* Ensures text inside h1 is centered */
}
.custom-hr {
border: 0;
height: 2px;
background: #99f135;
margin: 1.5em 0;
}
.aluno {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
margin: 2em 5%;
gap: 1em;
}
.corpo h2 {
margin-bottom: 1.5em;
}
.corpo {
display: flex;
flex-direction: column;
align-items: center;
margin: 2em 5%;
line-height: 1.8;
}
.corpo .texto {
margin: 1em 15%;
text-align: center;
margin: 0 auto;
width: 80%;
}
.corpo p a {
text-decoration: none;
color: #fff;
transition: 0.5s ease;
}
.corpo p a:hover {
color: #A6F750;
}
footer {
text-align: center;
padding: 20px 0;
background-color: #182319;
width: 100%;
}
footer .contato {
display: flex;
gap: 15px;
align-items: center;
justify-content: center;
margin-bottom: 5px;
}
footer a {
text-decoration: none;
color: #fff;
transition: 0.5s ease;
}
footer a:hover {
color: #A6F750;
}
#scroll-top-btn {
position: fixed;
bottom: 20px;
right: 20px;
background-color: #444;
color: #fff;
border: none;
border-radius: 50%;
padding: 10px 15px;
font-size: 1.5rem;
cursor: pointer;
transition: background-color 0.3s ease;
}
#scroll-top-btn:hover {
background-color: #A6F750;
}
.matrix {
color: #00FF00; /* Matrix green color */
font-family: 'Courier New', Courier, monospace; /* Monospaced font for a matrix feel */
white-space: nowrap;
overflow: hidden; /* Ensures text doesn't overflow the container */
border-right: 0.15em solid #00FF00; /* Blinking cursor effect */
font-size: 1.2em; /* Adjust size as needed */
width: 0; /* Initially hides the text */
animation: typing 4s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}
@keyframes typing {
from { width: 0; }
to { width: 31%; }
}
@keyframes blink-caret {
from, to { border-color: transparent; }
50% { border-color: #00FF00; }
}