forked from gustavodepaula-daw/E01-HTML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyletutorial.css
More file actions
43 lines (34 loc) · 748 Bytes
/
Copy pathstyletutorial.css
File metadata and controls
43 lines (34 loc) · 748 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
body{
font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-image: linear-gradient(45deg, #8e2de2, #4a00e0);
min-height: 100vh;
min-width: 100vh;
justify-content: center;
align-items: center;
color: white;
font-size: 16px;
}
header{
margin: 20px;
font-size: 20px;
text-align: center;
}
h1{
text-align: center;
font-size: 24px;
}
.main_box{
display: flex;
justify-content: center;
align-items: center;
text-align: justify;
color: white;
padding: 15px;
border-radius: 20px;
}
.main_content{
background-color: #18192c;
padding: 20px;
border-radius: 20px;
width: 600px;
}