-
Notifications
You must be signed in to change notification settings - Fork 0
/
reset.css
71 lines (57 loc) · 1.74 KB
/
reset.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
*{
/*Resetando as configurações*/
margin: 0;
padding: 0;
font-family: 'open_sanslight';
box-sizing: border-box;
-moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}
/*Reset basico das midias*/
object,
embed,
video,
iframe,
iframe['style'] { max-width:100%; height:auto; }
img { max-width:100%; vertical-align:middle; }
ul { list-style:none; }
/*Reset p Formulários em Todos Dispositivos*/
fieldset{border: 0;}
input,
select,
textarea{padding: 10px; width: 100%;}
input.btn{width: auto; cursor: pointer;}
/*vai ser a box de controle*/
.container { float:left; width:100%; background-color:#e9ecf0; }
.clear { clear:both; }
.fontzero { font-size:0; }
/*È uma Seção de Titulo */
.section_title{ font-size: 1em; text-align: center; color: #333; }
@font-face {
font-family: 'open_sansbold';
src: url('opensans/opensans-bold-webfont.woff2') format('woff2'),
url('opensans/opensans-bold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'open_sansextrabold';
src: url('opensans/opensans-extrabold-webfont.woff2') format('woff2'),
url('opensans/opensans-extrabold-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'open_sanslight';
src: url('opensans/opensans-light-webfont.woff2') format('woff2'),
url('opensans/opensans-light-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}
@font-face {
font-family: 'open_sansregular';
src: url('opensans/opensans-regular-webfont.woff2') format('woff2'),
url('opensans/opensans-regular-webfont.woff') format('woff');
font-weight: normal;
font-style: normal;
}