-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
140 lines (114 loc) · 2.07 KB
/
main.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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
header {
padding: 10px;
margin-bottom: 50px;
font-size:60px;
color: rgba(229, 255, 0, 0.774);
display: center;
font-family: "Space Grotesk",sans-serif;
background-image: url(./imagens/cafes.jfif);
}
body {
background-color: rgba(27, 31, 31, 0.267);
opacity: 0,87;
}
header nav li {
display: inline;
padding: 10px;
margin-left: 10px;
font-size: 40px;
color:rgba(202, 223, 12, 0.87);
font-family: "Space Grotesk",sans-serif;
font-weight: 600px;
}
section h2,
section h3,
form button ,
.end,
.contact-methods{
font-family:"Space Grotesk", sans-serif;
}
.conteudo {
margin-bottom: 50px;
margin-left: 500px;
display: inline-block;
font-size: 25px;
font-family: "Nanum Gothic", sans-serif;
}
header nav li a {
color:rgba(202, 223, 12, 0.87);
text-decoration: none;
}
.container {
max-width:1290px;
width: 100%;
margin: 0 auto;
}
header .container{
display:flex;
align-items:flex-end;
justify-content: space-between
}
.social-links img {
height: 30px;
}
.social-links li {
display: inline;
margin-right: 10px;
}
.social-links li a {
text-decoration: none;
}
h2 {
margin-left: 10px;
margin-bottom: 10px;
font-size: 40px;
font-weight: 600px;
}
#contact-speak {
display: flexk;
margin-left: 20px;
}
.contact-methods{
display: flex;
justify-content: space-between;
margin-right: 40px;
margin-left: 10px;
font-size: 20px;
}
form input,
form textarea,
form button {
display: block;
width: 300px;
margin-bottom: 8px;
padding: 10px;
background-color: rgb(226, 226, 217);
border: none;
}
form textarea {
resize: none;
height: 100px;
}
section h3 {
margin-bottom: 10px;
}
form button{
border: none;
cursor: pointer;
background-color:rgb(161, 161, 105) ;
}
form button:hover{
background-color: rgb(85, 82, 82);
}
.end {
margin-left: 900px;
padding:5px;
}
input:focus, textarea:focus{
outline-color: rgb(124, 129, 134);
}