-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
65 lines (55 loc) · 1.11 KB
/
Copy pathstyles.css
File metadata and controls
65 lines (55 loc) · 1.11 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: Arial, Helvetica, sans-serif;
}
body{
background-color: #202020;
color: #fff;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-size: 14px;
width: 300px;
height: 200px;
}
header{
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 50px;
}
h3{
margin-bottom: 20px;
}
div{
padding: 10px;
text-align: center;
}
p{
margin-bottom: 10px;
}
button {
margin-bottom: 20px;
padding: 10px 20px;
background-color: #469249;
color: white;
border: none;
border-radius: 5px;
cursor: pointer;
transition: background-color 0.3s ease, scale 0.3s ease, box-shadow 0.3s ease;
box-shadow: 0 0 10px rgba(76, 175, 80, 0.3),
0 0 15px rgba(76, 175, 80, 0.2);
}
button:hover {
scale: 1.05;
background-color: #4CAF50;
box-shadow: 0 0 18px rgba(76, 175, 80, 0.5),
0 0 22px rgba(76, 175, 80, 0.4);
}
button:active {
background-color: rgb(61, 168, 64);
}