-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathestilo.css
98 lines (83 loc) · 1.32 KB
/
estilo.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
body{
font-family: 'Trebuchet MS', Helvetica, sans-serif;
}
footer{
position: fixed;
bottom: 0;
right: 0;
}
.container{
margin: 0 auto;
margin-top: 120px;
max-width: 550px;
}
fieldset{
padding:1em;
border: 1px solid #ccc;
background:#f8f8f8;
}
.dados{
display: flex;
flex-direction: column;
}
input{
height: 40px;
border: none;
border-radius: 10px;
padding-left: 10px ;
margin: 5px;
outline:none;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
-moz-appearance: none;
-webkit-appearance: none;
}
button{
font-size: 1.5em;
color: #fff;
width: 100%;
height: 40px;
padding: 0;
margin:5px 0 0 0 ;
border: none;
border-radius: 4px;
outline:none;
}
button:enabled {
background:#01DF01;
cursor: pointer;
}
button:disabled {
background:#ccc;
cursor: auto;
}
h2{
text-align: center;
border-bottom: 1px solid #01DF01;
}
.imagem{
text-align:center;
}
@media(max-width:500px){
.imagem{
display: none;
}
}
table {
width: 100%;
border: 1px solid #000;
border-collapse: collapse;
background-color:#ccc;
}
table, th{
font-size: 20px;
text-align: center;
/* color: #01DF01; */
background-color: #01DF01;
}
td{
text-transform: capitalize;
color: #000;
background-color: #ccc;
}