-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
49 lines (43 loc) · 710 Bytes
/
Copy pathstyles.css
File metadata and controls
49 lines (43 loc) · 710 Bytes
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
body {
font-family: 'Arial', sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 150px;
width: 300px;
padding: 20px;
}
h1 {
font-size: 1.5em;
color: #333;
margin: 0;
padding: 0;
}
p {
color: #666;
font-size: 0.9em;
margin-bottom: 20px;
}
.button {
padding: 10px 20px;
background-color: #d32f2f;
color: white;
border: none;
border-radius: 5px;
font-size: 1em;
cursor: pointer;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #c62828;
}
.button:disabled {
background-color: #aaa;
cursor: not-allowed;
}