Skip to content

Commit 6a89011

Browse files
authored
Add basic styles for body, button, and pre elements
1 parent bb9fef1 commit 6a89011

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

frontend/style.css

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
body {
2+
font-family: Arial, sans-serif;
3+
padding: 40px;
4+
background: #f7f7f7;
5+
}
6+
7+
button {
8+
padding: 10px 16px;
9+
cursor: pointer;
10+
background: black;
11+
color: white;
12+
border: none;
13+
}
14+
15+
pre {
16+
background: #eee;
17+
padding: 10px;
18+
margin-top: 20px;
19+
}

0 commit comments

Comments
 (0)