-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinline_style_14.css
More file actions
221 lines (99 loc) · 2.52 KB
/
inline_style_14.css
File metadata and controls
221 lines (99 loc) · 2.52 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
/* Full-width container */
.container {
display: flex;
flex-wrap: wrap;
gap: 20px;
padding: 20px;
}
/* Card for all items */
.supported-card {
background: white;
padding: 15px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 5px;
flex: 1;
}
/* Header Titles */
.header {
display: flex;
justify-content: space-between;
width: 100%;
background: #f1f1f1;
padding: 10px;
font-weight: bold;
text-align: center;
border-radius: 5px;
}
.title {
flex: 1;
text-align: center;
}
/* Two-column Layout */
.row {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: 10px 0;
}
/* Visa Block */
.rect {
flex: 1;
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
border-radius: 5px;
color: white;
margin-left:15px;
font-weight: bold;
text-align: center;
background-color: #ff6666; /* Light Red */
}
/* Tax Term Container */
.tax-terms {
display: flex;
flex-wrap: wrap;
gap: 5px;
justify-content: flex-end;
flex: 1;
}
/* Circular Tax Term Blocks */
.circle {
display: flex;
align-items: center;
justify-content: center;
padding: 10px;
width: 50px;
height: 50px;
border-radius: 50%;
color: white;
font-weight: bold;
text-align: center;
}
/* Colors */
.c2c { background-color: #87CEFA; } /* Light Sky Blue */
.w2 { background-color: #FFD700; } /* Light Yellow */
.contract { background-color: #90EE90; } /* Light Green */
/* Separator */
.separator {
width: 100%;
height: 1px;
background: #e0e0e0;
margin: 10px 0;
}
/* Mobile View */
@media (max-width: 600px) {
.row {
flex-direction: column;
text-align: center;
}
.tax-terms {
justify-content: center;
margin: 5px;
}
.container {
flex-direction: column;
}
}