-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
114 lines (85 loc) · 1.73 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
:root {
--bc_color_0 : #f1f1f1;
--bg_1: #331a00;
--c_1: #ffe6cc;
--c_header: var(--c_1);
--bg_menu: #ffd9b3;
--c_menu:rgb(255, 153, 51);
--hover:#fcfcfc;
--bg_footer: var(--bg_1);
--c_footer: var(--c_1);
--boder: #ccc;
--font_1: normal normal normal 18px/1.3em 'Open Sans',sans-seri
}
/* Style the tab */
.tab {
overflow: hidden;
border: 1px solid var(--border);
background-color: var(--bg_color_0);
}
/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.8s;
font-weight: bold;
}
/* Change background color of buttons on hover */
.tab button:hover {
background-color: var(--hover);
opacity: 0.3;
}
/* Create an active/current tablink class */
.tab button.active {
background-color: #ffbf80;
}
/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
/* border: 1px solid #ff8c1a;*/
border-top: none;
font: var(--font_1)
}
.header {
background-color: var(--bg_1) ;
color: var(--c_header) ;
font-family:"Open Sans",Helvetica,Arial,sans-serif
}
.footer {
background-color: var(--bg_footer) ;
color: var(--c_footer);
font-size: 0.7em;
position: fixed;
left: 0;
bottom: 0;
width: 100%;
}
.menu {
background-color: var(--bg_menu);
color: var(--c_menu);
}
body {
background-color: #ffcc99;
}
img {
max-width: 70%;
}
.titulo {
font-size: calc( min(1.8em,5vmin)) ;
vertical-align: top;
padding-top: 1em;
padding-left: -1em;
line-height: 1.6;
}
p .source {
text-align: right;
width: 20em;
margin-left: 30%;
font-size: 0.9em;
font-family: Helvetica;
}