-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_style.css
63 lines (55 loc) · 916 Bytes
/
index_style.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
main h1 {
background: skyblue;
font-style: italic;
font-weight: bold;
text-align: center;
font-size: 50px;
padding: 10px;
}
h2 {
font-style: italic;
padding: 10px;
}
body {
text-align: center;
}
.texto {
display: inline-block;
margin: 30px 75px;
width: 35%;
padding: 10px;
border: 2px solid black;
resize: none;
}
.texto:hover {
border-color: orange
}
.botao-container {
width: 100%;
max-width: 120px;
margin: 0 auto;
text-align: center;
display: inline;
}
.botao {
background-color: skyblue;
border: none;
border-radius: 3px;
margin: 10px 20px;
padding: 10px 10px;
}
.botao:hover{
cursor: pointer;
background: orange;
transform: scale(1.1);
}
footer {
position: fixed;
bottom: 15px;
width: 100%;
padding: 12px 0 2px;
border-top: 2px solid skyblue;
text-align: center;
font-style: italic;
font-weight: bold;
}