-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle2.css
56 lines (54 loc) · 910 Bytes
/
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
*{
background-color: rgb(152, 143, 143);
font-size: larger;
font-family: serif;
font-weight: bold;
margin: 0%;
padding: 0%;
border: 0%;
}
p{
color: red;
font-size: 24px;
}
.purple{
color: chocolate;
}
.choro{color: lightskyblue;
}
#parrafo{
color: blueviolet;
font-size: 35px;
}
.container{
display: inline-block;
margin-top: 10px;
width: 120px;
height: 120px;
color: darkgray;
background-color: honeydew;
}
#caja{
display: block;
}
.boton{
background-color: rgb(10, 60, 242);
border: 2px solid orange;
color: rgb(204, 20, 20);
padding: 10px 30px;
font-size: 16px;
margin: 9px 9px;
cursor: pointer;
}
.boton:hover{
background-color:orange;
}
.input_con_borde{
border: 2px solid orange;
padding: 5px;
font-size: 29px;
}
.input_con_borde:focus {
border-color: blue;
outline: none;
}