|
| 1 | +* { |
| 2 | + box-sizing: border-box; |
| 3 | + padding: 0; |
| 4 | + margin: 0; |
| 5 | + font-family: Verdana, "PingFang SC", "Microsoft Yahei", sans-serif; |
| 6 | +} |
| 7 | + |
| 8 | +main { |
| 9 | + display: grid; |
| 10 | + place-items: center; |
| 11 | + width: 100vw; |
| 12 | + height: 100vh; |
| 13 | + max-width: 100%; |
| 14 | + background: #DBEEFF; |
| 15 | +} |
| 16 | + |
| 17 | +p { |
| 18 | + font-weight: 500; |
| 19 | + font-size: 16px; |
| 20 | + color: #384d6c; |
| 21 | +} |
| 22 | + |
| 23 | +.box p:nth-child(2) { |
| 24 | + font-weight: 700; |
| 25 | +} |
| 26 | + |
| 27 | +.box { |
| 28 | + display: grid; |
| 29 | + place-items: center; |
| 30 | + gap: 32px; |
| 31 | + |
| 32 | + padding: 40px 56px; |
| 33 | + |
| 34 | + /* claymporphism */ |
| 35 | + background: #deebff; |
| 36 | + box-shadow: 12px 12px 18px rgba(155, 196, 255, 0.42), |
| 37 | + inset 10px 10px 11px rgba(250, 252, 255, 0.48), |
| 38 | + inset -10px -10px 15px rgba(46, 129, 255, 0.22); |
| 39 | + border-radius: 52px; |
| 40 | +} |
| 41 | + |
| 42 | +button { |
| 43 | + padding: 8px 32px; |
| 44 | + border: none; |
| 45 | + color: white; |
| 46 | + font-weight: 900; |
| 47 | + |
| 48 | + /* claymporphism */ |
| 49 | + background: #cb5eff; |
| 50 | + box-shadow: 2px 3px 13px rgba(197, 78, 253, 0.43), |
| 51 | + inset -2px -2px 8px rgba(75, 10, 106, 0.43), |
| 52 | + inset 2px 2px 6px rgba(251, 242, 255, 0.47); |
| 53 | + border-radius: 22px; |
| 54 | +} |
0 commit comments