-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresponsive.css
More file actions
109 lines (88 loc) · 1.69 KB
/
responsive.css
File metadata and controls
109 lines (88 loc) · 1.69 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
/* Mobile Styles */
@media (max-width: 480px) {
/* Navigation */
.navigation {
padding: 15px 10px;
}
.navigation ul {
flex-direction: column;
width: 100%;
gap: 5px;
}
.navigation li {
width: 100%;
}
.navigation a {
width: 100%;
text-align: center;
padding: 12px;
margin: 2px 0;
}
/* Header */
.header {
padding: 40px 15px;
}
.header h1 {
font-size: 2rem;
line-height: 1.2;
}
.subtitle {
font-size: 1rem;
}
.description {
font-size: 0.9rem;
}
/* Login Section */
.login-section {
padding: 20px 15px;
margin-top: 30px;
}
.login-section h3 {
font-size: 1.2rem;
}
.login-btn {
font-size: 14px;
padding: 12px 20px;
min-width: auto;
}
/* Container */
.container {
padding: 0 15px;
}
/* Features */
.features {
padding: 40px 0;
margin: 20px 0;
}
.features h2 {
font-size: 1.8rem;
margin-bottom: 30px;
}
.feature-grid {
padding: 0 15px;
}
.feature-card {
padding: 20px;
}
.feature-card h3 {
font-size: 1.1rem;
}
/* Quick Actions */
.quick-actions {
padding: 40px 0;
}
.quick-actions h2 {
font-size: 1.8rem;
margin-bottom: 30px;
}
.action-btn {
padding: 12px 20px;
font-size: 14px;
width: 95%;
}
/* Footer */
.footer {
padding: 20px 0;
font-size: 14px;
}
}