Skip to content

Commit 65fa50a

Browse files
committed
CSS padrão para os desafios
1 parent af6441a commit 65fa50a

1 file changed

Lines changed: 35 additions & 0 deletions

File tree

desafios/Css/pattern.css

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
@import url('https://fonts.googleapis.com/css2?family=Otomanopee+One&display=swap');
2+
3+
*{
4+
margin: 0;
5+
padding: 0;
6+
}
7+
8+
body{
9+
background: #f06d06;
10+
text-align: center;
11+
font-family: 'Otomanopee One', sans-serif;
12+
13+
}
14+
15+
h1{ color: #fff; }
16+
17+
div h3, div p{ color: #000; }
18+
19+
button{
20+
margin-top: 25px;
21+
margin-right: 20px;
22+
padding: 50px;
23+
font-size: 15px;
24+
font-weight: bold;
25+
font-family: 'Otomanopee One', sans-serif;
26+
}
27+
28+
div{
29+
background-color: rgba(204, 204, 204, 0.7);
30+
border-radius: 10px;
31+
margin: 25px auto;
32+
height: 200px;
33+
width: 550px;
34+
box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
35+
}

0 commit comments

Comments
 (0)