-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcssexterno.css
92 lines (81 loc) · 1.53 KB
/
cssexterno.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
* {
box-sizing: border-box;
outline: 0;
}
body {
--primary-color: rgb(57, 123, 138);
--primary-color-darker: rgb(141, 131, 131);
}
body {
margin: 0;
padding: 0;
background: var(--primary-color);
font-family: 'Open sans', sans-serif;
font-size: 1.2em;
line-height: 1.5em;
}
header {
display: flex;
flex-direction: column;
color: rgb(255, 255, 255);
}
.header-descricao {
display: flex;
margin: auto;
}
header h2 {
text-align: center;
margin-bottom: 20px;
}
.dividindo {
font-family: 'Times New Roman', Times, serif;
margin-right: 25px;
margin-left: 25px;
}
.dividindo p {
margin-top: 10px;
font-style: italic;
color: rgb(15, 12, 12);
font-size: 23px;
}
.container {
max-width: 640px;
margin: 10px auto;
background: rgb(121, 58, 58);
padding: 20px;
border-radius: 10px;
}
form input, form label, form button {
display: block;
width: 100%;
margin-bottom: 10px;
}
form input {
font-size: 24px;
height: 50px;
padding: 0 20px;
}
form input:focus {
outline: 1px solid var(--primary-color);
}
form button {
border: none;
background: rgb(172, 162, 162);
color: rgb(10, 10, 10);
font-size: 18px;
font-weight: 700;
height: 50px;
cursor: pointer;
margin-top: 30px;
}
form button:hover {
background: rosybrown;
}
@media screen and (max-width: 780px) {
header {
display: flex;
align-items: center;
flex-direction: column;
height: fit-content;
}
}