-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
147 lines (128 loc) · 2.35 KB
/
style.css
File metadata and controls
147 lines (128 loc) · 2.35 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
body {
/* backdrop-filter: blur(10px); */
background-color: cadetblue;
}
.rotate-90 {
-webkit-animation: rotate-90 0.5s linear forwards;
animation: rotate-90 0.5s linear forwards;
}
@-webkit-keyframes rotate-90 {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
@keyframes rotate-90 {
from {
-webkit-transform: rotate(0deg);
transform: rotate(0deg);
}
to {
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
}
/* Style for the header */
header {
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
background-color: #22365d6d;
color: #f9fafb;
}
/* Style for the buttons */
button {
transition: all 0.3s ease-in-out;
}
button:hover {
transform: scale(1.05);
}
/* Style for the messages */
.message {
list-style: none;
padding: 0;
margin: 0;
}
.message-text {
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Center buttons */
button {
display: block;
margin: 0 auto;
}
button { /* Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
transition-duration: 0.4s;
cursor: pointer;
border-radius: 8px;
}
ul.my-10 li {
background-color: #f9fafb;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
margin-bottom: 0.5rem;
box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}
.message {
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
animation: fade-in 0.5s ease;
}
.message-text {
display: flex;
align-items: center;
justify-content: center;
padding: 0.5rem 1rem;
border-radius: 0.5rem;
background-color: #e2e8f0;
color: #2d3748;
font-weight: 500;
font-size: 1rem;
position: relative;
}
.message-text::before {
content: '\2713 ';
position: absolute;
top: 50%;
left: 0.5rem;
transform: translateY(-50%);
color: #2d3748;
font-size: 1.2rem;
}
@keyframes fade-in {
from {
opacity: 0;
transform: translateY(-1rem);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.card{
background-color: #ffffff76;
}
textarea, input{
background-color: #ffffff76;
border-color: black;
}