-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstylehelp.css
More file actions
126 lines (122 loc) · 3.27 KB
/
stylehelp.css
File metadata and controls
126 lines (122 loc) · 3.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 {
margin: 0;
padding: 0;
font-family: 'Times New Roman', serif;
background: url(12.jpg) no-repeat;
background-size: cover;
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
}
.container {
color:white;
width: 80%;
margin: 50px auto;
background-color: #1211115c;
backdrop-filter: blur(10px);
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
h2 {
text-align: center;
font-size: 36px;
margin-bottom: 30px;
position: relative;
animation: slideInTop 1s ease-in-out;
color:white;
}
@keyframes slideInTop {
0% {
transform: translateY(-50px);
opacity: 0;
}
100% {
transform: translateY(0);
opacity: 1;
}
}
.question {
cursor: pointer;
padding: 10px 0;
border-bottom: 1px solid #ddd;
font-size: 28px;
}
.answer {
font-size: 25px;
display: none;
padding: 10px 0;
animation: slideDown 0.3s ease-in-out;
color: white;
}
@keyframes slideDown {
from {
height: 0;
opacity: 0;
}
to {
height: auto;
opacity: 1;
}
}
.like-dislike {
margin-top: 5px;
}
.like-dislike button {
margin-right: 10px;
border: none;
background-color: transparent;
cursor: pointer;
font-size: 24px;
}
.like-dislike button:focus {
outline: none;
}
.like-dislike button:hover {
color: #333;
}
.like {
color: #606770;
}
.dislike {
color: #606770;
}
.like.clicked::before, .dislike.clicked::before {
content: '\2713';
}
.form-container {
margin-top: 30px;
text-align: center;
}
.form-container input[type="text"] {
width: 60%;
padding: 10px;
margin-bottom: 10px;
border: 1px solid #ddd;
border-radius: 5px;
}
.form-container input[type="submit"] {
padding: 10px 20px;
background: linear-gradient(to right, rgb(214, 3, 3), rgb(236, 4, 216));
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
}
h3{
text-align: center;
font-size: 36px;
margin-bottom: 30px;
position: relative;
animation: slideInTop 1s ease-in-out;
color:white;
}