Blame view

Sioux/Page.html 2.69 KB
32c9271a   skhinach   modif
1
2
3
4
5
  <!doctype html>
  <html>
  	<head>
  		<meta charset ="utf-8">
  		<title> Interface Tangible </title>
a69a94a7   skhinach   Ajout de gestion ...
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
99
100
101
102
103
104
105
  <!--
  		<style>
  
  			body 
  			{
  				font-family: 'lato', sans-serif;
  			}
  
  
  			.container 
  			{
  			  	max-width: 1000px;
  			  	margin-left: auto;
  			  	margin-right: auto;
  			  	padding-left: 10px;
  			  	padding-right: 10px;	
  			}
  
  			h2 
  			{
  			  	font-size: 26px;
  			  	margin: 20px 0;
  			  	text-align: center;
  			}
  
  			
  			  	li 
  				{
  			    		border-radius: 3px;
  			    		padding: 25px 30px;
  			    		display: flex;
  			    		justify-content: space-between;
  			    		margin-bottom: 25px;
  			  	}
  
  			  	.table-entete 
  				{
  			    		background-color: #95A5A6;
  			    		font-size: 14px;
  			    		text-transform: uppercase;
  			    		letter-spacing: 0.03em;
  			  	}
  
  			  	.table-ligne
  				{
  			    		background-color: #ffffff;
  			    		box-shadow: 0px 0px 9px 0px rgba(0,0,0,0.1);
  			  	}
  
  			  	.nom
  				{
  			    		flex-basis: 40%;
  			  	}
  
  			  	.etat
  			       	{
  			    		flex-basis: 60%;
  			  	}
  
  				@media all and (max-width: 767px) 
  				{
  			    		.table-entete 
                          {
  			      			display: none;
  			    		}
  			    
                          .table-ligne
                          {
  			      
  			    		}
  
  			    		li 
                          {	
  			      			display: block;
  			    		}
  
  			    		.col 
                          {
  			      			flex-basis: 100%; 
  			    		}
  
  			    		.col 
                          {
  			      			display: flex;
  			     			padding: 10px 0;
  			      			&:before 
                              {
  							color: #6C7A89;
  							padding-right: 10px;
  							content: attr(data-label);
  			       				flex-basis: 50%;
  							text-align: right;
  			      			}
  			    		}
  			  	}
  			
  
  
  		</style>
  		-->
32c9271a   skhinach   modif
106
107
108
  		</meta>
  	</head>
  	<body>
a69a94a7   skhinach   Ajout de gestion ...
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
  		<div class="container">
    			<h2>Interfaces Tangibles</h2>
  			<ul class="tableau">
  				<li class="table-entete">
  					<div class="col nom">Interfaces</div>
  			      		<div class="col etat">Etat</div>
  		    		</li>
  				<li class="table-ligne">
        					<div class="col nom" data-label="Nom">42235</div>
        					<div class="col etat" data-label="Customer Name">John Doe</div>
      				</li>
  	    			<li class="table-ligne">
        					<div class="col nom" data-label="Nom">42442</div>
        					<div class="col etat" data-label="Customer Name">Jennifer Smith</div>
      				</li>
      				<li class="table-ligne">
        					<div class="col nom" data-label="Nom">42257</div>
        					<div class="col etat" data-label="Customer Name">John Smith</div>
  	    			</li>
      				<li class="table-ligne">
        					<div class="col nom" data-label="Nom">42311</div>
        					<div class="col etat" data-label="Customer Name">John Carpenter</div>
  				</li>
   			</ul>
  		</div>
32c9271a   skhinach   modif
134
135
  	</body>
  </html>