-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathupdated_index.module.css
177 lines (146 loc) · 3.17 KB
/
updated_index.module.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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
@import url('https://fonts.googleapis.com/css2?family=Lexend:wght@400;500;600&display=swap');
.main,
.main input {
font-size: 16px;
line-height: 24px;
color: #d8d8d8;
font-family: 'Lexend', "Helvetica Neue", Arial, sans-serif;
}
.main {
display: flex;
flex-direction: column;
align-items: center;
padding-top: 60px;
color: #d8d8d8;
}
.main .icon {
width: 34px;
}
.main h3 {
font-size: 32px;
line-height: 40px;
font-weight: bold;
margin: 16px 0 10px;
text-transform: uppercase;
}
.main form {
display: flex;
flex-direction: column;
width: 100%;
background-color: rgba(17, 17, 19, 0.9);
padding: 0px;
border-radius: 10px;
}
.main input[type="text"] {
padding: 12px 16px;
border: 1px solid #0f8e6c;
border-radius: 4px;
margin-bottom: 24px;
outline-color: #0f8e6c;
background-color: #212121;
color: #d8d8d8;
transition: all 0.3s ease;
}
.main input[type="text"]:focus {
box-shadow: 0 0 5px rgba(16, 163, 127, 0.5);
}
.main ::placeholder {
color: #8e8ea0;
opacity: 1;
}
.main input[type="submit"] {
padding: 12px 0;
color: #fff;
background-color: #0f8e6c;
border: none;
border-radius: 4px;
text-align: center;
cursor: pointer;
transition: all 0.3s ease;
}
.main input[type="submit"]:hover {
background-color: #10a37f;
}
.main .result {
font-weight: bold;
margin-top: 40px;
background-color: rgba(17, 17, 19, 0.9);
padding: 20px;
border-radius: 10px;
color: #d8d8d8;
width: 40%;
height: 220px;
font-family: "Helvetica Neue", Arial, sans-serif;
}
.body {
background: linear-gradient(135deg, #232323, #0e0e0e, #0a3b09);
background-size: 400% 400%;
animation: gradient 10s ease infinite;
}
.message-container {
display: flex;
align-items: flex-start;
margin-bottom: 10px;
}
.main .avatar-container {
display: flex;
flex-wrap: wrap;
margin-top: 10px;
}
.avatar {
width: 90px;
height: 90px;
border-radius: 50%;
margin-right: 10px;
margin-bottom: 10px;
}
.characterAvatarContainer {
display: grid;
grid-template-columns: repeat(3, 1fr);
grid-gap: 10px;
justify-items: left;
margin-bottom: 10px;
}
.characterAvatarImage {
width: 130px;
height: px;
}
.avatarRoundedCorners {
border-radius: 10px; /* Adjust the value to your preference */
}
.characterAvatarRoundedCorners {
border-radius: 10px; /* Adjust the value to your preference */
}
@keyframes gradient {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.linksContainer {
margin-top: 5px; /* Example style */
text-align: center; /* Example style */
}
/* Ensuring padding and border are included in the element's width and height */
* {
box-sizing: border-box;
}
/* Media Queries for Responsive Design */
@media screen and (max-width: 768px) {
.main {
width: 100%; /* Adjusting width for smaller screens */
padding: 10px; /* Adjust padding as needed */
margin: 0 auto; /* Centering the main container */
}
/* Other responsive adjustments as needed */
}
/* Example of setting max-width */
.main {
max-width: 1200px; /* Adjust as needed */
margin: 0 auto; /* Centering the main container */
}