custom.css

última modificação 19/05/2025 18h00

text/css custom.css — 1 KB

Conteúdo do arquivo

.circle {
    border-radius: 50%;  
    padding: 4px;
    background: #06acff !important;
    color: #fff;
    text-align: center; 
    float: left;
    padding-bottom: 0px;
    padding-top: 0px;
    padding-right: 0px;
    padding-left: 0px;
    height: 30px;
    width: 30px;
    margin-right: 10px;
}

.circle2 {
	border-radius: 50%;  
	padding: 4px;
	background: #06acff !important;
	color: #fff;
	text-align: center; 
	float: left;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	height: 5px;
	width: 5px;
	margin-top: 10px;
	margin-right: 10px;
}   

.span_customers{
    border: 1px solid #ddd;
    display: inline-block; 
    width: 80%;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px;
} 
.perguntas div {
  padding-bottom: 24px;
  padding-top: 24px;
}

.perguntas div:nth-child(n + 2) {
  border-top: 1px solid #e5e5e5;
}

.perguntas button {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}

.perguntas button h3 {
  width: 100% !important;
  margin: 0;
  text-wrap: wrap;
}

.perguntas button::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 8px;
  background: url("https://portal.ufvjm.edu.br/servicos/seta-abrir.svg")
    no-repeat center center;
  transition: 0.2s;
}

.perguntas button:hover::before,
.perguntas button[aria-expanded="true"]::before {
  transform: rotate(180deg);
}

.perguntas button[aria-expanded="true"]:hover::before {
  transform: rotate(360deg);
}

.perguntas dd {
  font-size: 1.125rem;
  line-height: 1.875rem;
  margin-top: 16px !important;
}

.js .perguntas dd {
  display: none;
}

.js .perguntas dd.ativa {
  display: block;
}