Skip to content

Commit 8fb4360

Browse files
authored
Create style.css
1 parent 802f615 commit 8fb4360

File tree

1 file changed

+53
-0
lines changed

1 file changed

+53
-0
lines changed

style.css

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
* {
2+
margin: 0;
3+
padding: 0;
4+
box-sizing: border-box;
5+
}
6+
7+
body {
8+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
9+
background-color: #f8f9fa;
10+
color: #333;
11+
}
12+
13+
.app {
14+
max-width: 600px;
15+
margin: 0 auto;
16+
padding: 20px;
17+
}
18+
19+
header {
20+
text-align: center;
21+
margin-bottom: 20px;
22+
}
23+
24+
h1 {
25+
color: #4285f4;
26+
}
27+
28+
button {
29+
background-color: #4285f4;
30+
color: white;
31+
border: none;
32+
padding: 10px 15px;
33+
border-radius: 5px;
34+
margin: 10px 0;
35+
font-size: 16px;
36+
}
37+
38+
ul {
39+
list-style: none;
40+
margin-top: 20px;
41+
}
42+
43+
li {
44+
padding: 10px;
45+
border-bottom: 1px solid #ddd;
46+
display: flex;
47+
justify-content: space-between;
48+
align-items: center;
49+
}
50+
51+
footer {
52+
text-align: center;
53+
margin-top: 30px;

0 commit comments

Comments
 (0)