# Nota adesiva (C 085)

Categoria: Cards  
Tags: sticky-note, paper, rotated, handwritten, yellow  
Página: https://designforai.dev/pt/snippet/card-085

## Prompt

Construa uma nota adesiva quadrada de 200px: gradiente vertical #fef3c7 para #fde68a, sem raio, uma fonte de estilo manuscrito (Segoe Print / Bradley Hand / cursive) em marrom #78350f, sombra 2px 6px 14px rgba(0,0,0,.18), rotacionada -2deg por padrão e endireitando para 0deg com escala 1.03 no hover. Uma tira de fita branca translúcida (70x20px, branco a 50%) atravessa o centro do topo. Texto da nota 15px, e uma pequena assinatura 12px no canto inferior direito a 70% de opacidade.

## HTML

```html
<div class="card-085">
  <p>Ship the cards page before the styles gallery. Keep every snippet under 45 lines.</p>
  <span>Nik</span>
</div>
```

## CSS

```css
.card-085 {
  position: relative;
  width: 200px;
  min-height: 200px;
  padding: 28px 20px 20px;
  background: linear-gradient(180deg,#fef3c7,#fde68a);
  font-family: "Segoe Print","Bradley Hand",cursive;
  color: #78350f;
  box-shadow: 2px 6px 14px rgba(0,0,0,.18);
  transform: rotate(-2deg);
  transition: transform .2s,box-shadow .2s
}
.card-085::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -8px;
  width: 70px;
  height: 20px;
  transform: translateX(-50%) rotate(1deg);
  background: rgba(255,255,255,.5);
  box-shadow: 0 1px 2px rgba(0,0,0,.1)
}
.card-085:hover {
  transform: rotate(0) scale(1.03);
  box-shadow: 4px 10px 24px rgba(0,0,0,.22)
}
.card-085 p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.5
}
.card-085 span {
  position: absolute;
  right: 16px;
  bottom: 12px;
  font-size: 12px;
  opacity: .7
}
```
