-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
130 lines (115 loc) · 2.13 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
@font-face {
font-family: 'Raleway';
font-style: normal;
font-weight: 400;
src: url('../fonts/Raleway.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
--main-color: #2b0548;
--light-color: #ddd;
}
html {
scroll-behavior: smooth;
}
p,
li {
font-size: 1.2em;
}
.primary {
color: var(--main-color);
}
.bg-light {
background-color: var(--light-color);
}
.progress {
overflow-y: auto;
word-wrap: break-word;
height: 100%;
min-height: max-content;
/* border-radius: 7%; */
border-right: 1px solid white;
/* border-left: 1px solid black; */
/* margin-right: 1px; */
/* color: white !important; */
}
body,
h1,
h2,
h3,
h4,
h5,
h6,
p {
font-family: "Raleway", sans-serif;
}
/* Full height image header */
.bgimg-1 {
background-position: center;
background-size: cover;
background-image: url("../img/pexels.jpg");
min-height: 100%;
}
.w3-bar .w3-button {
padding: 16px;
color: var(--main-color);
}
.button {
border: none;
color: white;
background-color: #2b0548;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
}
#title {
color: white;
/* text-shadow: 3px 3px 3px #2b0548; */
/* box-shadow: 3px 3px 3px #2b0548; */
font-weight: bold;
/* opacity: 0.95; */
}
#title img {
box-shadow: 3px 3px 4px var(--main-color);
max-width: 100%;
}
img{
border-radius: 5px;
}
table{
margin-top: 0px;
margin-bottom: 0px;
width: 90%;
height: 90%;
border-collapse: collapse;
}
td{
border: 0;
padding: 0;
padding-left: 10px;
height: 100%;
vertical-align: middle;
}
tr{
padding: 0;
}
.sessao{
margin-left: 1em;
}
/* Hide scrollbar for Chrome, Safari, and Opera */
body::-webkit-scrollbar {
display: none;
}
/* Hide scrollbar for IE, Edge, and Firefox */
body {
overflow: hidden;
-ms-overflow-style: none; /* IE and Edge */
scrollbar-width: none; /* Firefox */
}
iframe.embedly-embed {
height: 100% !important;
}