forked from karolinealencar/desvendandoJavaScript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathestilo.css
More file actions
148 lines (127 loc) · 2.33 KB
/
estilo.css
File metadata and controls
148 lines (127 loc) · 2.33 KB
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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
body {
background-image: url("img/symphony.png");
color: #666;
text-align: center;
font-family: 'Calibri';
width: 70%;
margin: 0 auto;
padding-top: 180px;
padding-bottom: 100px;
font-size: 120%;
}
h1, h2, h3 {
font-family: 'Cambria';
}
ul {
margin: 0 auto;
padding-bottom: 20px;
line-height: 28px;
padding-left: 0;
}
li {
display: inline;
transition: 0.3s ease;
}
li:hover {
border-bottom: dotted 2px;
padding-bottom: 2px;
transition: 0.3s ease;
}
li + li:before {
content: "◊ ";
color: #999;
font-size: 10px;
padding: 1px;
}
a {
text-decoration: none;
color: #000;
font-style: italic;
}
header {
position: fixed;
top: 0;
background-color: rgba(255, 255, 255, 0.9);
width: 100%;
left: 0;
-webkit-box-shadow: 0px 5px 5px -4px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 5px 5px -4px rgba(0,0,0,0.75);
box-shadow: 0px 5px 5px -4px rgba(0,0,0,0.75);
z-index: 2;
}
header h1 {
font-size: 3em;
margin: 16px;
}
footer {
position: fixed;
bottom: 0;
background-color: rgba(255, 255, 255, 0.8);
width: 100%;
left: 0;
padding: 10px;
border-top: dotted 1px;
}
footer span {
color: red;
}
section {
background-color: rgba(255, 255, 255, 0.6);
padding: 20px;
}
section h2 {
font-size: 2em;
padding: 40px 0;
}
section h2:before,
section h2:after {
content: "◎";
padding: 6px;
font-size: 18px;
}
section p {
text-align: left;
padding: 20px;
}
.code {
font-family: 'Consolas';
background-color: rgba(0, 0, 0, 0.5);;
color: #fff;
padding: 20px;
text-align: left;
margin: 40px;
line-height: 26px;
letter-spacing: 0.5px;
}
.code span {
color: #87CEFA;
}
.code strong {
color: #98FB98;
font-weight: normal;
}
.separador {
font-size: 40px;
color: #666;
margin: 0;
padding: 0;
}
.intro {
text-align: left;
background-color: rgba(255, 255, 255, 0.6);
padding: 40px;
position: relative;
-webkit-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.45);
-moz-box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.45);
box-shadow: 5px 5px 5px 0px rgba(0,0,0,0.45);
border-radius: 10px;
}
.intro h2 {
text-align: justify;
}
.intro img {
width: 14%;
position: absolute;
right: 20px;
top: 20px;
}