|
| 1 | +.screen { |
| 2 | + width: 100%; |
| 3 | + height: 100%; |
| 4 | + border-radius: 36px; |
| 5 | + overflow: hidden; |
| 6 | + position: relative; |
| 7 | + /* display: none; */ |
| 8 | +} |
| 9 | + |
| 10 | +/* Screen 3.5: Photo Preview Screen */ |
| 11 | +.preview-screen { |
| 12 | + background: linear-gradient( |
| 13 | + 180deg, |
| 14 | + var(--accent-bg) 0%, |
| 15 | + var(--soft-pink) 100% |
| 16 | + ); |
| 17 | +} |
| 18 | + |
| 19 | +.content { |
| 20 | + height: 100%; |
| 21 | + position: relative; |
| 22 | + overflow-y: auto; |
| 23 | +} |
| 24 | + |
| 25 | +.preview-content { |
| 26 | + height: 100%; |
| 27 | + display: flex; |
| 28 | + flex-direction: column; |
| 29 | + padding: 20px; |
| 30 | +} |
| 31 | + |
| 32 | +.time-info { |
| 33 | + text-align: center; |
| 34 | + margin-bottom: 15px; |
| 35 | + padding: 12px 20px; |
| 36 | + background: var(--primary-bg); |
| 37 | + border-radius: 15px; |
| 38 | + border: 2px solid var(--warm-brown); |
| 39 | +} |
| 40 | + |
| 41 | +.time-remaining { |
| 42 | + font-size: 18px; |
| 43 | + font-weight: 700; |
| 44 | + color: var(--dark-brown); |
| 45 | + margin-bottom: 4px; |
| 46 | +} |
| 47 | + |
| 48 | +.time-label { |
| 49 | + font-size: 12px; |
| 50 | + color: var(--text-secondary); |
| 51 | +} |
| 52 | + |
| 53 | +.preview-header { |
| 54 | + text-align: center; |
| 55 | + margin-bottom: 20px; |
| 56 | +} |
| 57 | + |
| 58 | +.preview-title { |
| 59 | + font-size: 20px; |
| 60 | + font-weight: 700; |
| 61 | + color: var(--dark-brown); |
| 62 | + margin-bottom: 8px; |
| 63 | +} |
| 64 | + |
| 65 | +.preview-subtitle { |
| 66 | + font-size: 14px; |
| 67 | + color: var(--text-secondary); |
| 68 | +} |
| 69 | + |
| 70 | +.photo-preview-area { |
| 71 | + flex: 1; |
| 72 | + background: var(--dark-brown); |
| 73 | + border-radius: 20px; |
| 74 | + margin-bottom: 30px; |
| 75 | + display: flex; |
| 76 | + justify-content: center; |
| 77 | + align-items: center; |
| 78 | + color: var(--light-peach); |
| 79 | + font-size: 16px; |
| 80 | + font-weight: 500; |
| 81 | + text-align: center; |
| 82 | + min-height: 300px; |
| 83 | + max-height: 400px; |
| 84 | + border: 3px solid var(--warm-brown); |
| 85 | + box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15); |
| 86 | +} |
| 87 | + |
| 88 | +.preview-actions { |
| 89 | + display: flex; |
| 90 | + flex-direction: column; |
| 91 | + gap: 16px; |
| 92 | +} |
| 93 | + |
| 94 | +.preview-button { |
| 95 | + padding: 18px 30px; |
| 96 | + border: none; |
| 97 | + border-radius: 25px; |
| 98 | + font-size: 16px; |
| 99 | + font-weight: 600; |
| 100 | + cursor: pointer; |
| 101 | + transition: all 0.3s ease; |
| 102 | +} |
| 103 | + |
| 104 | +.btn-confirm { |
| 105 | + background: var(--warm-brown); |
| 106 | + color: white; |
| 107 | + box-shadow: 0 6px 20px rgba(212, 165, 116, 0.3); |
| 108 | +} |
| 109 | + |
| 110 | +.btn-confirm:hover { |
| 111 | + background: var(--medium-brown); |
| 112 | + transform: translateY(-2px); |
| 113 | +} |
| 114 | + |
| 115 | +.btn-retake { |
| 116 | + background: var(--primary-bg); |
| 117 | + color: var(--text-primary); |
| 118 | + border: 2px solid var(--warm-brown); |
| 119 | + box-shadow: 0 4px 15px rgba(139, 69, 19, 0.1); |
| 120 | +} |
| 121 | + |
| 122 | +.btn-retake:hover { |
| 123 | + background: var(--accent-bg); |
| 124 | + transform: translateY(-2px); |
| 125 | +} |
0 commit comments