-
Notifications
You must be signed in to change notification settings - Fork 1
/
style.css
131 lines (114 loc) · 2.16 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
131
body {
background-color: rgb(253, 251, 251);
font-size: 16px;
color: rgb(253, 251, 251);
font-family: -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
line-height: 20px;
}
#cabecalho {
left: 0;
top: 0;
position: fixed;
z-index: 1;
background-color: rgb(37, 70, 110, 36);
border: 2px solid rgb(95, 88, 232, 91);
width: 100%;
text-align: center;
height: 70px;
}
.buttons {
text-decoration: none;
display: inline;
}
.button {
position: relative;
padding: 7px 50px;
background-color: rgb(95, 88, 232, 91);
border-radius: 1.3rem;
}
.button:hover {
background-color: rgb(45, 38, 150, 71);
position: relative;
padding: 7px 49px;
border: 1px solid rgb(95, 88, 232, 91);
cursor: pointer;
}
#minha_foto {
position: relative;
width: 290px;
height: auto;
left: 845px;
top: 90px;
border: 2px solid rgb(37, 36, 92, 36);
}
main {
position: absolute;
top: 20px;
display: inline;
padding: 2px;
left: 5px;
}
ol {
background-color: rgb(37, 70, 110, 36);
top: 60px;
position: relative;
border: 2px solid rgb(95, 88, 232, 91);
width: 640px;
}
ul {
background-color: rgb(37, 70, 110, 36);
top: 50px;
position: relative;
border: 2px solid rgb(95, 88, 232, 91);
width: 640px;
}
section {
text-indent: 2rem;
display: flex;
position: relative;
top: 280px;
}
.lado-esquerdo {
background-color: rgb(37, 70, 110, 36);
border: 2px solid rgb(95, 88, 232, 91);
float: left;
max-width: 800px;
margin-right: 5px;
height: 115px;
}
.lado-direito {
background-color: rgb(37, 70, 110, 36);
border: 2px solid rgb(95, 88, 232, 91);
float: right;
max-width: 520px;
}
table {
background-color: rgb(37, 70, 110, 36);
position: absolute;
top: 324px;
left: 700px;
width: 640px;
line-height: 30px;
border: 2px solid rgb(95, 88, 232, 91);
padding: 5px;
text-align: center;
}
caption {
color: rgb(37, 36, 92, 36);
font-size: 20px;
}
thead {
text-decoration: underline;
}
#rodape {
position: fixed;
width: 100%;
left: 0;
background-color: rgb(37, 70, 110, 36);
bottom: 0;
clear: both;
border: 2px solid rgb(95, 88, 232, 91);
text-align: center;
}
a { color: rgb(253, 251, 251);
}