-
Notifications
You must be signed in to change notification settings - Fork 0
/
comeco.css
127 lines (111 loc) · 2.31 KB
/
comeco.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
@charset "UTF-8";
/* NUNITO */
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap');
/* SACRAMENTO (parece cursiva */
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
* {
margin: 0;
padding: 0;
}
body {
font-family: 'Nunito', sans-serif;
width: 100%;
color: #282828;
}
nav {
display: flex;
flex-direction: row;
justify-content: space-between;
padding-top: 25px;
background-image: linear-gradient(to right, #FAE5DB 50%, #E3C3BC 50%);
}
nav div {
display: flex;
flex-direction: row;
align-items: center;
}
nav div img {
width: 60px;
height: 60px;
margin-left: 80px;
margin-right: 80px;
}
nav div#n2 {
padding-right: 15px;
}
.btn {
display: block;
height: 20px;
padding: 10px;
text-decoration: none;
color: #282828;
background: #FAE5DB;
box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.25);
border-radius: 5px;
margin-left: 15px;
margin-right: 15px;
}
.btn:visited {
color: #282828;
}
.btn:hover {
cursor: pointer;
}
.btnTamanho {
width: 50px;
text-align: center;
background-color: #E3C3BC;
font-size: 1.3em;
padding: 10px 10px 15px;
}
.btnTamanho:hover {
background-color: #d2b6b0;
}
.btnLink {
width: 150px;
text-align: center;
}
.btnLink:hover {
background-color: #f3dfd7;
}
header {
background-image: linear-gradient(to right, #FAE5DB 50%, #E3C3BC 50%);
display: flex;
flex-direction: row;
justify-content: space-between;
}
header h1 {
font-family: 'Sacramento', cursive;
font-size: 10em;
}
header h2 {
font-size: 3em;
margin-top: -50px;
margin-bottom: 30px;
}
header div {
width: 800px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
header #btnSaibaMais {
width: 250px;
height: 30px;
background-color: #E3C3BC;
font-family: 'Nunito', sans-serif;
font-size: 2em;
font-weight: 600;
border-radius: 5px;
padding: 15px 15px 25px 15px;
text-align: center;
}
header #btnSaibaMais:hover {
background-color: #d2b6b0;
}
header img {
min-width: 340px;
width: 1150px;
max-width: 1150px;
}