Skip to content

Commit e83c1c8

Browse files
Add files via upload
Adding a css file
1 parent 82b6fbb commit e83c1c8

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

index.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
body {
2+
background-color: #002266;
3+
color: white;
4+
}
5+
h1, h2{
6+
font-family: 'Rubik', sans-serif;
7+
}
8+
p {
9+
font-family: 'Oswald', sans-serif;
10+
margin: 14px;
11+
border-left: 6px solid #1ac9ff;
12+
background-color: #cecece;
13+
color: black;
14+
}
15+
div {
16+
width: 100px;
17+
height: 100px;
18+
background-color: red;
19+
transition: width 2s, height 2s, transform 2s;
20+
}
21+
div:hover {
22+
width: 300px;
23+
height: 300px;
24+
}

0 commit comments

Comments
 (0)