-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
121 lines (101 loc) · 2.18 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (101 loc) · 2.18 KB
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');
:root {
--font1: Verdana, Geneva, Tahoma, sans-serif;
--font2: 'Bree Serif', serif;
--font3: 'Indie Flower', cursive
}
* {
margin: 0px;
padding: 0px;
}
html, body {
min-height: 100vh;
background-color: darkgray;
font-family: var(--font1);
}
header {
background-color: black;
}
header > h1 {
color: white;
text-align: center;
padding-top: 50px;
font-variant: small-caps;
font-family: var(--font2);
font-size: 8.5vw;
}
header > p {
color: white;
text-align: center;
padding-bottom: 50px;
}
section {
padding-top: 10vh;
padding-bottom: 10vh;
padding-left: 30px;
line-height: 2em;
font-family: var(--font3);
font-size: 2em;
font-weight: bold;
font-style: italic;
font-size: 3.5vw;
}
.normal {
background-color: white;
color: black;
}
#primeiro {
background-color: black;
color: white;
background-image: url('imagens/background001.jpg');
background-repeat: no-repeat;
background-position: right center;
background-size: cover;
background-attachment: fixed;
box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.5);
}
#primeiro > p {
background-color: rgba(0, 0, 0, 0.5);
display: inline-block;
padding: 5px;
text-shadow: 1px 1px 0px black;
}
#segundo {
background-color: black;
color: white;
background-image: url('imagens/background002.jpg');
background-repeat: no-repeat;
background-position: right center;
background-size: cover;
background-attachment: fixed;
box-shadow: inset 6px 6px 13px 0px rgba(0, 0, 0, 0.5);
}
#segundo > p {
background-color: rgba(0, 0, 0, 0.5);
display: inline-block;
padding: 5px;
text-shadow: 1px 1px 0px black;
}
p {
padding-bottom: 1.5em;
}
a {
text-decoration: none;
color: white;
}
a:hover {
text-decoration: underline;
}
a:active {
color: rgb(251, 255, 0);
}
footer {
background-color: black;
}
footer > p {
color: white;
text-align: center;
padding: 10px;
}