-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathreview.css
63 lines (57 loc) · 1.22 KB
/
review.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
body {
font-family: 'Lato', sans-serif;
background-color: #e0f7fa;
/* Light teal background */
color: #272727;
margin: 0;
padding: 40px;
line-height: 1.6;
}
h1 {
color: #0080ff;
text-align: center;
margin-bottom: 60px;
font-size: 2.8em;
}
#test-button {
display: block;
width: 250px;
margin: 0 auto 50px;
padding: 15px 20px;
background-color: #17d3ff;
color: white;
border: 2px solid transparent;
/* Transparent border for hover effect */
border-radius: 20px;
/* Rounded corners */
cursor: pointer;
font-size: 20px;
transition: background-color 0.3s, transform 0.2s, border-color 0.3s;
}
#test-button:hover {
background-color: #24c7ed;
/* Darker shade on hover */
border-color: #fee975;
/* Bright yellow border */
transform: translateY(-3px);
}
#result {
border: 3px solid #ffaa7b;
padding: 30px;
background-color: #ffffff;
width: 80%;
margin: 0 auto 50px;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
border-radius: 15px;
}
@media (max-width: 600px) {
body {
padding: 20px;
}
#testButton,
#result {
width: 100%;
margin-bottom: 30px;
}
}