Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Body

deck
Bloco de código
languagejavascriptcss
body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
background-color: #D1D3D4; /* Background color */
color: #58595B; /* Foreground color used for text */
font-family: Helvetica;
font-size: 14px;
margin: 0; /* Amount of negative space around the outside of the body */
padding: 0; /* Amount of negative space around the inside of the body */ 
min-width:300px;
}


Headings

effectDuration
Bloco de código
languagecss
h1 {
margin: 0;
padding: 0;
background-color: #D1D3D4;
color: #FFF;
display: block;
font-size: 18px;
font-weight: bold;
padding: 10px 0;
text-align: center;
text-decoration: none;
}


List

ul {

list-style: none;

margin: 10px;

padding: 0;

}

ul li {

background-color: #FFFFFF;

border: 1px solid #999999;

color: #58595B;

display: block;

font-size: 14px;

font-weight: bold;

margin-bottom: -1px;

padding: 12px 10px;

text-decoration: none;

}

ul li:first-child {

-webkit-border-top-left-radius: 8px;

-webkit-border-top-right-radius: 8px;


 
}

ul li:last-child {

-webkit-border-bottom-left-radius: 8px;

-webkit-border-bottom-right-radius: 8px;


 position:relative;


}
card
Bloco de código
languagecss
ul {
list-style: none;
margin: 10px;
padding: 0;
}
ul li {
background-color: #FFFFFF;
border: 1px solid #999999;
color: #58595B;
display: block;
font-size: 14px;
font-weight: bold;
margin-bottom: -1px;
padding: 12px 10px;
text-decoration: none;
}
ul li:first-child {
0.5
idsamples
historyfalse
effectTypefade
Card
defaulttrue
id1
labelbody

body {

font-family: Verdana, Geneva, Tahoma, sans-serif;

background-color: #D1D3D4; /* Background color */

color: #58595B; /* Foreground color used for text */

font-family: Helvetica;

font-size: 14px;

margin: 0; /* Amount of negative space around the outside of the body */

padding: 0; /* Amount of negative space around the inside of the body */
min-width:300px;
}

Card
id2
labelHeadings

h1 {

margin: 0;

padding: 0;

background-color: #D1D3D4;

color: #FFF;

display: block;

font-size: 18px;

font-weight: bold;

padding: 10px 0;

text-align: center;

text-decoration: none;

}

Card
id3
labelList


label

id4label
.mylabel {

width: 28%;


 overflow: hidden;

text-overflow: ellipsis;

-o-text-overflow: ellipsis;

white-space: nowrap;

display:inline-block;


 position:relative;


 float:left;


 line-height:32px;

}
card
Bloco de código
language
css
label


input text

id5text
Bloco de código
language
label
css
input[type=text] {

width: 70%;

 
 font-family: Verdana, Geneva, Tahoma, sans-serif;

font-size: 14px;

background-color: #E8E8E8;


 position:relative;


 float:right;

}
card

textArea

id6textArea
Bloco de código
language
label
css
textarea {

width: 70%;

 
 font-family: Verdana, Geneva, Tahoma, sans-serif;

font-size: 14px;

background-color: #E8E8E8;


 position:relative;


 float:right;

}
card


Select

id7label
Bloco de código
language
css
select
select
 {

width: 70%;

 
 font-family: Verdana, Geneva, Tahoma, sans-serif;

font-size: 14px;

background-color: #E8E8E8;


 position:relative;


 float:right;

}

 

Você deve tratar no CSS todos os componentes que serão utilizados no seu HTML Mobile para que todos tenham o mesmo padrão, seu HTML Mobile com CSS deve ter essa estrutura:

Deck of Cardscode
effectDuration0.5
idsamples
historyfalse
effectTypefade
languagehtml/xml
<html >
<head>
<title>Formulário de Compras </title>
<style 

<html >

<head>

<title>Formulário de Compras </title>

<style
type="text/css">

 Aqui você deve incluir a estrutura do CSS de cada componente

</style>

</head>

<body>

</ body >


  //Aqui você deve incluir a estrutura do CSS de cada componente
</style>
</head>
<body>
</ body >
</html>
Nota
titleAtenção

Essa é a estrutura básica, dentro de cada tag deve ter elementos e lógicas correspondentes a elas.

...