-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutils.css
125 lines (99 loc) · 2.07 KB
/
utils.css
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
/* Utility Classes */
.min-h-screen {
min-height: 100vh;
}
.bg-red {
background-color: red;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
max-width: 1200px; /* Optional max width */
padding: 0 20px; /* Optional horizontal padding */
}
.flex {
display: flex;
}
.items-center {
align-items: center;
}
.justify-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}
.flex-col {
flex-direction: column;
}
.font-bold {
font-weight: bolder;
}
.my-1 {
margin-top: 13px;
margin-bottom: 13px;
}
.my-2 {
margin-top: 26px;
margin-bottom: 26px;
}
.px-2 {
padding-left: 13px;
padding-right: 13px;
}
.text-blue {
color: rgb(227, 74, 56);
}
.btn {
padding: 7px 12px;
border: 2px solid rgb(249, 246, 246);
border-radius: 6px;
cursor: pointer;
color: white;
background-color: rgb(248, 72, 53);
}
.overflow-x-hidden {
overflow-x: hidden;
}
.text-center {
text-align: center;
}
/* Responsive Styles */
@media (max-width: 600px) {
.min-h-screen {
padding: 20px; /* Add padding for smaller screens */
}
.my-1 {
margin-top: 10px;
margin-bottom: 10px;
}
.my-2 {
margin-top: 20px;
margin-bottom: 20px;
}
.px-2 {
padding-left: 10px;
padding-right: 10px;
}
.btn {
padding: 10px;
font-size: 14px; /* Adjust button size */
}
.font-bold {
font-size: 1.5rem; /* Larger font size for titles */
}
h1 {
font-size: 1.8rem; /* Responsive heading size */
}
p {
font-size: 1rem; /* Responsive paragraph size */
}
/* Stack flex items vertically on small screens */
.flex {
flex-direction: column;
}
/* Optional: Adjust background color or other styles */
.bg-red {
background-color: rgba(255, 0, 0, 0.8); /* Slightly transparent on small screens */
}
}