-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
130 lines (108 loc) · 1.88 KB
/
style.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
128
129
130
* {
font-family: sans-serif;
margin: 0; /* Margem Externa */
padding: 0; /* Margem Interna */
box-sizing: border-box;
}
/* MENU SUPERIOR */
.caixa-roxa {
display: flex;
height: 50px;
align-items: center;
justify-content: center;
border-bottom: 1px solid #d3d3d3;
}
ul {
display: flex;
gap: 100px;
list-style: none;
margin-left: 100px;
}
li {
font-size: 12px;
font-weight: 400;
color: #373737;
}
.logo {
height: 20px;
}
/* PARTE INFERIOR */
.caixa-azul {
display: flex;
justify-content: space-between;
align-items: center;
padding: 50px;
}
.titulo-iphone {
font-size: 30px;
}
.titulo-secundario {
font-size: 40px; /* Tamanho do texto */
margin-top: 10px; /* Margem parte de cima */
margin-bottom: 20px; /* Margem parte de baixo */
}
.paragrafo {
font-size: 15px;
margin-bottom: 25px;
}
.preco {
font-size: 20px;
color: #626262;
font-weight: 300;
margin-bottom: 30px;
}
.botao {
background-color: #0071e3;
color: #ffffff;
padding: 10px 20px;
border: none;
border-radius: 20px;
font-size: 20px;
cursor: pointer;
}
.troca-cor {
width: 40px;
height: 40px;
border-radius: 50px;
border: none;
cursor: pointer;
}
.azul {
background-color: #81A5C4;
}
.amarelo {
background-color: #F7DA47;
}
.branco {
background-color: #C1C1C1;
}
.preto {
background-color: #272D33;
}
.vermelho {
background-color: #B50012;
}
.roxo {
background-color: #EDE7F1;
}
.escolha-cor {
font-size: 16px;
color: #3a3a3a;
font-weight: 700;
margin-top: 50px;
margin-bottom: 15px;
}
.iphone {
width: 450px;
margin-top: 100px;
z-index: 99;
}
.circulo {
width: 100%;
height: 100%;
background: #81A5C4;
position: absolute;
top: 0;
left: 0;
clip-path: circle(600px at right 1000px);
}