-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRedPR-mobile.css
More file actions
140 lines (124 loc) · 3.36 KB
/
Copy pathRedPR-mobile.css
File metadata and controls
140 lines (124 loc) · 3.36 KB
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
133
134
135
136
137
138
139
140
/* ══════════════════════════════════════════════
RedPR-mobile.css
Estilos extras para o tutorial mobile (Firefox)
══════════════════════════════════════════════ */
/* ── FIREFOX BADGE ── */
.firefox-badge {
display: inline-flex;
align-items: center;
gap: 6px;
background: rgba(255, 102, 17, .1);
border: 1px solid rgba(255, 102, 17, .28);
color: #FF6611;
padding: 4px 13px;
border-radius: 50px;
font-family: 'Space Mono', monospace;
font-size: .62rem;
font-weight: 700;
letter-spacing: .05em;
margin-bottom: .8rem;
}
/* ── FOX DOWNLOAD BTN ── */
.fox-download-btn {
display: flex;
align-items: center;
justify-content: center;
gap: 12px;
background: linear-gradient(135deg, #FF6611, #FF9500);
color: #fff;
font-family: 'Syne', sans-serif;
font-weight: 800;
font-size: .95rem;
padding: 14px 22px;
border-radius: 14px;
text-decoration: none;
margin-top: 1.1rem;
box-shadow: 0 4px 20px rgba(255, 102, 17, .3);
transition: transform .15s, box-shadow .15s;
border: none;
cursor: pointer;
}
.fox-download-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(255, 102, 17, .45); }
.fox-download-btn:active { transform: scale(0.97); }
/* ── ALREADY HAVE ── */
.already-have {
text-align: center;
margin-top: .9rem;
font-family: 'Space Mono', monospace;
font-size: .72rem;
color: rgba(165, 255, 112, .35);
}
.already-have a {
color: rgba(34, 255, 85, .65);
text-decoration: underline;
cursor: pointer;
transition: color .2s;
}
.already-have a:hover { color: #71ff55; }
/* ── KID TIP ── */
.kid-tip {
background: rgba(34, 255, 85, .05);
border: 1.5px dashed rgba(34, 255, 85, .28);
border-radius: 14px;
padding: 12px 15px;
font-family: 'Space Mono', monospace;
font-size: .78rem;
color: rgba(165, 255, 112, .65);
margin-top: 1rem;
line-height: 1.7;
}
.kid-tip strong { color: #71ff55; }
/* ── BIG STEP ── */
.big-step {
display: flex;
align-items: flex-start;
gap: 14px;
margin-bottom: .9rem;
background: rgba(34, 255, 85, .03);
border: 1px solid rgba(34, 255, 85, .1);
border-radius: 14px;
padding: 14px;
font-family: 'Space Mono', monospace;
font-size: .8rem;
color: rgba(165, 255, 112, .55);
line-height: 1.75;
}
.big-step strong { color: rgba(165, 255, 112, .9); }
.big-step em { color: rgba(165, 255, 112, .4); font-style: italic; }
/* ── BIG STEP NUM ── */
.big-step-num {
background: #71ff55;
color: #030803;
font-family: 'Space Mono', monospace;
font-weight: 700;
font-size: .85rem;
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
margin-top: 1px;
}
/* ── MOBILE STEP TITLE ── */
.steps-mobile .step-card .step-title {
font-size: clamp(1.05rem, 4.5vw, 1.25rem);
}
/* ── MOBILE RESPONSIVE ── */
@media (max-width: 599px) {
.container { padding: 4rem .9rem 3rem; }
.step-card { padding: 1.2rem; border-radius: 12px; }
.copy-area {
flex-direction: column;
align-items: stretch;
gap: 8px;
padding: 12px;
}
.btn-copy {
width: 100%;
justify-content: center;
padding: 12px;
font-size: .78rem;
}
}