-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (110 loc) · 2.27 KB
/
style.css
File metadata and controls
126 lines (110 loc) · 2.27 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
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
background-color: #f4f7f9;
color: #333;
margin: 0;
padding: 20px;
}
.container {
max-width: 1200px;
margin: 0 auto;
background-color: #fff;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
padding: 40px;
}
header {
text-align: center;
margin-bottom: 40px;
border-bottom: 1px solid #e0e0e0;
padding-bottom: 20px;
}
h1 {
color: #1a1a1a;
font-size: 2.5em;
margin-bottom: 10px;
}
header p {
color: #666;
font-size: 1.1em;
}
.input-section {
display: flex;
flex-direction: column;
align-items: center;
margin-bottom: 40px;
}
#accounts-input {
width: 80%;
height: 150px;
padding: 15px;
border: 1px solid #ccc;
border-radius: 6px;
font-size: 1em;
line-height: 1.5;
resize: vertical;
margin-bottom: 20px;
}
#analyze-btn {
background-color: #4a90e2;
color: white;
border: none;
padding: 15px 30px;
font-size: 1.1em;
font-weight: bold;
border-radius: 6px;
cursor: pointer;
transition: background-color 0.3s ease;
}
#analyze-btn:hover {
background-color: #357abd;
}
.results-section {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
gap: 20px;
}
.account-card {
background-color: #fdfdfd;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 20px;
box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
display: flex;
flex-direction: column;
}
.account-card h2 {
font-size: 1.5em;
margin-top: 0;
margin-bottom: 10px;
color: #1a1a1a;
}
.account-card .tier {
font-size: 1em;
font-weight: bold;
padding: 5px 10px;
border-radius: 20px;
color: white;
text-align: center;
margin-bottom: 15px;
width: fit-content;
}
.tier-1 { background-color: #e74c3c; }
.tier-2 { background-color: #f39c12; }
.tier-3 { background-color: #3498db; }
.account-card h3 {
font-size: 1.2em;
color: #333;
margin-bottom: 10px;
border-bottom: 1px solid #eee;
padding-bottom: 5px;
}
.account-card ul {
padding-left: 20px;
margin: 0;
}
.account-card li {
margin-bottom: 10px;
line-height: 1.5;
color: #555;
}