-
Notifications
You must be signed in to change notification settings - Fork 0
/
cuca.css
155 lines (129 loc) · 2.52 KB
/
cuca.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
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Karla', sans-serif;
}
body{
width: 100%;
height: 100vh;
background-image:url(img/Cuca.jpg);
background-repeat: no-repeat;
background-size: cover;
background-position: right;
display: flex;
flex-direction: column;
background-color: #00000055;
background-blend-mode: darken;
}
header {
top: 0;
background-color: #000000AA;
height: 70px;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 10vw;
}
.logo img{
width: 120px;
}
.links ul {
display: flex;
gap: 20px;
list-style-type: none;
}
.links a{
color: white;
text-decoration: none;
font-size: 20px;
user-select: none;
transition: all 1s;
}
.links a:hover {
color: red;
}
.links ul .submenu {
margin-top: 1px;
display: none;
position: absolute;
font-size: 12px;
}
.links li ul{
position: relative;
}
.submenu {
font-size: 18px;
background-color: #000000BB;
}
.submenu a{
display: flex;
justify-content: flex-start;
}
.submenu a:hover {
border-left: 10px solid red;
}
.links li:hover > .submenu{
display: flex;
flex-direction: column;
gap: 1px;
}
main {
flex-grow: 1;
color: white;
}
main h1{
margin: 0px;
padding: 10vh 11vw;
font-size: 80px;
-webkit-text-stroke: 2px white;
color: transparent;
}
main h1::after{
content: "Curupira";
-webkit-text-stroke: black;
color: transparent;
position: absolute;
top: 4px;
left: 4px;
z-index: -1;
}
.segundalinha h2{
float: left;
margin: 0px 30px 10px 0;
transform: rotate(270deg);
color: red;
font-size: 35px;
padding-top: 100px;
font-family: 'Reggae One', cursive;
}
.segundalinha p {
font-size: 20px ;
font-weight: 200;
max-width: 400px;
}
.creditos hr{
border-color: red;
}
.creditos ul{
margin: 0px;
padding: 5vh 0vw;
font-size: 25px;
gap: 20px;
display: flex;
flex-direction: row;
list-style-type: none;
}
.papel{
font-size: 20px;
}
main, footer {
background-image: url(img/chuva.gif);
background-blend-mode: darken;
background-color: #0000009c;
}
footer{
height: 40px;
text-align: center;
color: white;
}