-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (67 loc) · 1.31 KB
/
style.css
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
@charset "UTF-8";
* {
padding: 0px;
margin: 0px;
font-family: Arial, Helvetica, sans-serif;
}
html, body {
background: url(back-pc.jpg) no-repeat center center fixed;
background-size: cover;
}
header {
background-image: linear-gradient(to right, #481152, #ff0ac9);
color: white;
box-shadow: 2px 2px 5px black;
}
header > h1 {
padding: 10px;
text-align: center;
}
i#burguer {
background-color: #481152;
display: block;
text-align: center;
color: white;
padding: 10px;
cursor: pointer;
}
i#burguer:hover {
background-color: #ff0ac9;
color: black;
border: 1px solid rgba(255, 255, 255, 0.267);
}
menu {
display: none;
}
menu > ul {
list-style-type: none;
}
menu > ul > li > a {
display: block;
padding: 10px;
text-decoration: none;
text-align: center;
background-color: palevioletred;
color: white;
border-top: 1px solid pink;
}
menu > ul > li > a:hover {
background-image: linear-gradient(to right, #481152, #ff0ac9);
}
main {
width: 90vw;
background-color: pink;
margin: auto;
margin-top: 10px;
padding: 10px;
border-radius: 10px;
}
article > h2 {
padding-bottom: 10px;
text-align: center;
}
article > p {
text-align: justify;
padding-bottom: 20px;
text-indent: 10px;
}