-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (67 loc) · 1.04 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
/* iniciando css */
body{
font-family: verdana;
}
header{
text-align: center;
margin-bottom: 40px;
}
main{
border: 2px solid black;
margin: 10px;
padding: 10px;
font-family: Arial;
overflow: hidden;
}
*::selection{
background-color: darkblue;
color: lightblue;
}
h1::selection{
background-color: cadetblue;
color: aqua;
}
h2::selection{
background-color: green;
color: greenyellow;
}
h3::selection{
background-color: brown;
color: yellow;
}
h4::selection{
background-color: red;
color: orange;
}
h5::selection{
background-color: purple;
color: pink;
}
h6::selection{
background-color: indigo;
color: lightcoral;
}
.iframe{
height:50vw;
width:100;
align-items: center;
}
figure{
border: 2px solid black;
align-items: center;
overflow: hidden;
}
div{
padding-left: auto;
padding-right: auto;
}
img{
background-size: cover;
clear: both;
max-width: 100%;
max-height: 100%;
left: 50%;
}
iframe{
max-width: 100%;
}