-
Notifications
You must be signed in to change notification settings - Fork 4
/
style.css
132 lines (107 loc) · 2.81 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
body {
font-family: Monaco, monospace;
}
section[data-testid='stSidebar'] {
flex-shrink: unset !important;
}
.minha-classe{
color: #33b5c6;
margin-top: -10px;
opacity: 0.9;
}
.minha-classe a {
text-decoration: none; /* Remove o sublinhado padrão */
color: #33b5c6; /* Cor padrão */
transition: color 0.3s; /* Adiciona uma transição suave para a mudança de cor */
}
.minha-classe a:hover {
color: white; /* Cor quando o mouse passa por cima (pode ser alterada para a cor desejada) */
}
.social-media-container {
text-align: center;
}
.social-media-container a {
display: inline-block;
margin: 0 2px;
border-radius: 50%; /* Torna os ícones redondos */
transition: background-color 0.3s ease;
}
.social-media-container a:hover {
background-color: rgba(255, 255, 255, 0.1); /* Altera a cor de fundo ao passar o mouse */
}
.meu-texto { max-width: 100%; }
.meu-cabecalho {
text-align: center; /* Centralizar o texto */
color: #ff79c6;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.its-me{
text-align: center;
color: #282a36;
}
.css-15zrgzn {display: none}
.css-eczf16 {display: none}
.css-jn99sy {display: none}
.css-l9grht.e1nzilvr2 {display: none}
.css-myvzrx.e1vs0wn31 {display: none}
.css-l9grht.e1nzilvr3 {display: none}
#MainMenu {visibility: hidden;}
footer {visibility: hidden;}
/*@media(hover:hover) and (min-width: 600px) and (max-width: 769px){
header[data-testid="stHeader"] {
display:none;
}
section[data-testid='stSidebar'] {
height: 100%;
min-width:95px !important;
width: 95px !important;
margin-left: 305px;
position: relative;
z-index: 1;
top: 0;
left: 0;
background-color: #44475a;
overflow-x: hidden;
transition: 0.5s ease;
padding-top: 60px;
white-space: nowrap;
}
section[data-testid='stSidebar']:hover{
min-width: 330px !important;
}
button[kind="header"] {
display: none;
}
div[data-testid="collapsedControl"]{
display: none;
}
}
@media(hover: hover) and (min-width: 769px){
header[data-testid="stHeader"] {
display:none;
}
section[data-testid='stSidebar'] {
height: 100%;
min-width:95px !important;
width: 95px !important;
transform:translateX(0px);
position: relative;
z-index: 1;
top: 0;
left: 0;
background-color: #44475a;
overflow-x: hidden;
transition: 0.5s ease;
padding-top: 60px;
white-space: nowrap;
}
section[data-testid='stSidebar']:hover{
min-width: 330px !important;
}
button[kind="header"] {
display: none;
}
div[data-testid="collapsedControl"]{
display: none;
}
}