-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
127 lines (101 loc) · 1.88 KB
/
css.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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
*{
margin:0;
padding: 0;
}
body{
font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
background-color: cadetblue;
}
header{
width: 100%;
height: 250px;
background-color:darkblue;
text-align:center;
padding:10px;
padding-top: 30px;
}
.title{
font-size: 26px;
font: family 20%; ;
text-align: center;
border:10px black;
justify-content: center;
}
.red2{
text-align:center;
width: 1200px;
height: 1200px;
}
section{
color: white;
text-align: center;
}
.formConteiner{
max-width: 230px;
padding: 40px;
float: right;
}
h2{
font-size: 20px;
}
.mb{
margin-bottom: 20px;
}
input , select{
width: 100%;
box-sizing: border-box;
padding: 10px;
border: none;
}
input[type="button"]{
color: white;
background-color: black;
font-weight: bold;
}
input[type="button"]:hover{
background-color: blue;
transition-property: background-color, ;
transition-duration: 500ms;
}
.iphone{
position: initial;
background-color: blue;
transition-property: background-color, ;
transition-duration: 500ms;
float: left;
width: 200px;
height: 440px;
box-sizing: border-box;
padding: 10px;
border: none;
}
.modelos{
width:100px ;
height: 100px;
margin-left: 25%;
display: block;
}
input[type="text"]:hover{
background-color:red;
transition-property: background-color, ;
transition-duration: 500ms;
border: none;
border-radius: none;
}
.iphone12{
background-color: white;
color: white;
}
.logo{
width: 33,33%;
float:left;
}
.row::after{content:"" ;
clear: both;
display: table;
}
@media screen and (max-width: 500px) {
.column {
width: 100%;
}
}