-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patholimpiadas.css
121 lines (105 loc) · 1.93 KB
/
olimpiadas.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
* {
margin: 0;
padding:0;
box-sizing: border-box;
}
table {
border-collapse: collapse;
width: 100%;
border: 1px solid lightgray;
}
.TopoPagina{
text-align: center;
font-family: Papyrus;
font-weight: bold;
font-size: 36px;
border: 1px outset lightgray;
}
.TopoPagina a:link {
color: white;
background-color: transparent;
text-decoration: none;
}
.TopoPagina a:visited {
color: white;
background-color: transparent;
text-decoration: none;
}
.TopoPagina a:hover {
animation: mymove 1s infinite;
color: yellow;
background-color: transparent;
}
@keyframes mymove {
from {color: yellow;}
to {color: red;}
}
.TopoPagina a:active {
color: white;
background-color: transparent;
text-decoration: none;
}
.scroll-container {
position: fixed;
width: 15%;
background-color: #333;
overflow: scroll;
display: block;
padding: 5px;
align-items: center;
justify-content: center;
height: 85%;
border: 1px solid lightgray;
}
.scroll-container img {
background-color: #333;
width: 180px;
height: 120px;
padding: 5px;
opacity: 0.7;
}
.scroll-container img:hover {
opacity: 1.0;
}
.conteudo{
position: fixed;
background-color: #B0E0E6;
overflow: scroll;
padding: 2px;
width: 76%;
height: 85%;
}
.nossotime{
position: fixed;
background-color: #F0E68C;
text-align: center;
font-family: Papyrus;
font-weight: bold;
height: 85%;
width=9%;
border: 1px solid lightgray;
overflow: scroll;
padding: 5px;
}
.nossotime img {
vertical-align: middle;
mix-blend-mode: multiply;
width:80px;
height:75px;
opacity: 0.5;
}
.nossotime img:hover {
opacity: 1.0;
}
.copyright {
position: fixed;
bottom: 0;
height:5%
width:100%;
text-align: center;
background-color: white;
border: 1px solid lightgray;
}
.copyright img {
vertical-align: middle;
}