-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
126 lines (108 loc) · 2.19 KB
/
Copy pathstyle.css
File metadata and controls
126 lines (108 loc) · 2.19 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
*{
margin: 0;
padding: 0;
text-decoration: none;
list-style: none;
font-family: 'poppins', sans-serif;
}
:root{
--TemaEscuro: #00000082;
--temaClaro: #fff;
}
body{
background: linear-gradient(to left, #161616b1, rgb(250, 127, 12));;
}
#containerPesquisa{
max-width: 600px;
width: 100%;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
padding: 20px;
border-radius: 15px;
align-items: center;
border: 1px solid #00000099;
box-shadow: 3px 3px 3px rgb(255, 123, 0);
}
#containerPesquisa input{
border: 1px solid #ccc;
border-radius: 15px;
padding: 5px 0 5px 10px;
margin: 5px;
width: 90%;
}
#ativarModal{
border: 1px solid #595959;
border-radius: 15px;
padding: 10px;
transition: 0.3s ease;
margin: 10px 0 5px 0;
}
#ativarModal:hover{
transform: scale(1.1);
box-shadow: 3px 3px 3px rgb(255, 123, 0);
}
#referencia{
text-decoration: underline;
margin: 0 0 10px 0;
}
#containerInformacoes{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
width: 600px;
min-height: 500px;
border: 1px solid #000;
display: none;
text-align: center;
align-items: center;
border-radius: 15px;
z-index: 1000;
background-color: rgb(255, 255, 255);
}
#containerInformacoes h1{
margin: 8px 0 0 0;
}
#dadosBiblicos{
padding: 50px 20px 20px 20px;
align-items: center;
justify-content: space-between;
display: flex;
height: 100%;
}
.modalTop{
display: flex;
flex-direction: column;
justify-content: start;
height: 80%;
}
.modalBottom{
position: absolute;
bottom: 3%;
}
#fecharModal{
position: absolute;
top: 3%;
right: 3%;
}
.rodape{
position: absolute;
bottom: 0;
width: 100%;
background-color: rgb(255, 123, 0);
text-align: center;
}
.rodape p{
font-size: 11px;
}
@media (width < 480px){
#containerPesquisa{
width: 90%;
margin: 10px;
}
#containerInformacoes{
width: 90%
}
}