-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStlyes.css
More file actions
91 lines (78 loc) · 1.45 KB
/
Copy pathStlyes.css
File metadata and controls
91 lines (78 loc) · 1.45 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
body {
font-family: Arial, sans-serif;
background-color: #f0f0f0;
text-align: center;
}
.container {
width: 60%;
margin: 50px auto;
padding: 20px;
background-color: rgb(84, 115, 227);
border-radius: 10px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
.input-section, .select-section, .buttons {
margin: 20px 0;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
}
input, select {
padding: 10px;
width: 80%;
font-size: 16px;
border: 1px solid #ccc;
border-radius: 5px;
}
button {
padding: 10px 20px;
margin: 10px 5px;
background-color: #007BFF;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
}
button:hover {
background-color: #0056b3;
}
.result-section, .steps-section {
margin-top: 30px;
padding: 15px;
background-color: #e9ecef;
border-radius: 5px;
}
.result-section h2, .steps-section h2 {
margin-bottom: 10px;
}
#result {
font-size: 18px;
word-wrap: break-word;
}
#steps {
display: flex;
flex-direction: column;
align-items: center;
}
.step {
background-color: #28a745;
color: white;
padding: 10px 15px;
margin: 5px 0;
border-radius: 5px;
opacity: 0;
transform: translateY(20px);
animation: fadeInStep 0.5s forwards;
}
@keyframes fadeInStep {
to {
opacity: 1;
transform: translateY(0);
}
}