Skip to content

Commit cdad98d

Browse files
authored
Update style.css
1 parent ce24811 commit cdad98d

1 file changed

Lines changed: 11 additions & 7 deletions

File tree

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,34 @@
1+
/* Base styles */
12
body {
23
font-family: cursive;
3-
padding: 100px;
4+
padding: 60px 20px;
45
background-color: #333;
56
text-align: center;
67
}
78

89
.container {
910
background-color: white;
10-
padding: 30px;
11+
padding: 30px 20px;
1112
border: none;
12-
border-radius: 50px;
13+
border-radius: 30px;
1314
box-shadow: 0 0 30px rgba(0, 0, 0, 0.9);
14-
width: 15%;
15+
width: 90%;
16+
max-width: 300px;
1517
margin: auto;
1618
}
1719

1820
button {
19-
font-size: 20px;
20-
padding: 8px 40px;
21+
font-size: 1.2rem;
22+
padding: 10px 30px;
2123
border: 2px solid grey;
2224
border-radius: 50px;
2325
font-weight: 600;
2426
cursor: pointer;
2527
background-color: coral;
28+
color: white;
29+
transition: background-color 0.3s ease;
2630
}
2731

2832
button:hover {
2933
background-color: rgb(201, 64, 15);
30-
}
34+
}

0 commit comments

Comments
 (0)