-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.css
77 lines (50 loc) · 1 KB
/
layout.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
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700&display=swap');
* {
font-family: 'Roboto', sans-serif;
color: #fff;
}
body {
background: #000;
}
#estrutura_web {
width: 600px;
margin: auto;
}
#estrutura_web h2 {
font-size: 20px;
font-weight: 700;
color: #F9ED32;
text-transform: uppercase;
padding: 20px 0;
}
.campo_contato {
border: dashed 2px #F9ED32 ;
}
.campo_contato legend {
font-size: 16px;
text-transform: uppercase;
color: #F9ED32;
}
.campo_contato .campo_form {
border-bottom: solid 1px #f9ec324d;
margin-bottom: 15px;
}
.campo_contato .campo_form::placeholder {
color: #f9ec324d;
}
.checkbox {
cursor: pointer;
}
.checkbox input{
display: inline-block;
width: 20px;
}
#estrutura_web button {
background: #F9ED32;
width: unset;
padding: 10px 50px;
margin-top: 20px;
color: #000;
text-transform: uppercase;
font-weight: 700;
}