-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstyle2.css
96 lines (80 loc) · 1.76 KB
/
style2.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
/* Página inteira */
* {
margin: 0;
padding: 0;
}
/* Elementos com o ID "titulo" */
#titulo {
font-family: sans-serif;
color: rgb(230, 113, 113);
margin-left: 6%;
}
/* Elementos com o ID "subtitulo" */
#subtitulo {
font-family: sans-serif;
color: #000000;
margin-left: 8%;
}
/* Elementos de tag <fieldset>*/
fieldset {
border: 0;
}
/* Elemento de tag <body> */
body{
background-color: #d0d5dae0;
font-family: sans-serif;
font-size: 1em;
color: rgb(230, 113, 113);
margin-left: 36%;
margin-top: 15%;
justify-content: center;
}
/* Elementos de tags <body>, <input> e <button> */
input, button {
font-family: sans-serif;
font-size: 1em;
color: rgb(230, 113, 113);
border-radius: 5px;
}
/* Elementos de classe "campo" de tag <label> */
.campo label {
margin-bottom: 0.5em;
color: rgb(230, 113, 113);
display: block;
}
/* Elementos de classe "campo" ou "grupo" de tag <fieldset> */
fieldset.grupo .campo {
float: left;
margin-right: 2em;
}
/* Elementos de classe "campo" das tags <input> com atributo text>*/
.campo input[type="text"] {
padding: 0.2em;
border: 1px solid color rgb(230, 113, 113);
box-shadow: 2px 2px 2px;
display: block;
}
/* Elemento de classe "botao" */
.botao {
font-size: 1.2em;
background: rgb(230, 113, 113);
border: 2;
margin-bottom: 2em;
color: #0a0a0a;
padding: 0.2em 0.6em;
box-shadow: 2px 2px 2px rgba(0,0,0,0.2);
text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
position: absolute;
top: 51%;
left: 46%;
margin-right: -50%;
transform: translate(-50%, -50%)
}
a:link, a:visited, a:active {
text-decoration:none;
}
a:hover {
text-decoration: underline;
color:#000;
background:#ff0;
}