-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice-para-solicitante.html
147 lines (143 loc) · 4.74 KB
/
practice-para-solicitante.html
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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Serviço Solicitado com sucesso</title>
<style>
body{
padding: 0;
margin: 0;
border: 0;
display: flex;
background-color: rgb(236, 236, 236);;
justify-content: center;
width:100%;
height: 100%;
font-family:arial, 'helvetica neue', helvetica, sans-serif;
}
#frame{
background-color: rgb(255, 255, 255);
width: 90%;
border-radius: 10px;
}
#logo{
padding: 0;
margin: 0;
border: 0;
width: 100%;
display: flex;
justify-content: center;
flex-direction: row;
}
#img-logo{
width: 200px;
height: 200px;
}
#text-field{
padding: 0;
margin: 0;
border: 0;
margin-top: 200px;
margin-bottom: 200px;
width: 100%;
height: 200px;
display: flex;
justify-content: center;
flex-direction: column;
}
.text{
display: flex;
justify-content: center;
flex-direction: row;
}
.text-content{
padding: 0;
margin: 0;
border: 0;
margin-top: 10px;
width: 85%;
text-align: center;
color: rgb(38, 70, 83);
font-size: 1.5em;
}
.text-content-bellow{
padding: 0;
margin: 0;
border: 0;
margin-top: 50px;
width: 85%;
text-align: center;
color: rgb(38, 70, 83);
font-size: 1.2em;
}
#footer{
width:100%;
}
#img-footer{
padding: 0;
margin: 0;
border: 0;
width:100%;
}
a:link{
text-decoration:none;
color:rgb(38, 70, 83);
}
a:visited{
color: rgb(47, 123, 154);
}
a:active{
color: lightblue;
}
a:hover{
color:rgb(47, 123, 154);
text-shadow: 3px 3px 5px white;
}
@media only screen and (min-width: 1000px){
#frame{
width: 50%;
}
#text-field{
padding: 0;
margin: 0;
border: 0;
margin-top: 50px;
margin-bottom: 50px;
width: 100%;
height: 200px;
display: flex;
justify-content: center;
flex-direction: column;
}
#img-logo{
width: 200px;
height: 200px;
}
}
</style>
</head>
<body>
<div id="frame">
<div id="logo">
<img id="img-logo" src="https://practice.uffs.cc/images/logo-icon.png">
</div>
<div id="text-field">
<div class="text">
<p class="text-content">Prezado(a) {nome do solicitante},</p>
</div>
<div class="text">
<p class="text-content">Informamos que o/a solicitante {nome do solicitante} realizou um novo comentário na solicitação {título da solicitação}. Para mais informações acesse o link: <a href= "https://mural.practice.uffs.cc/" target="_blank">mural.practice.uffs.cc</a>.</p>
</div>
<div class="text">
<p class="text-content">Atenciosamente, equipe PRACTICE.</p>
</div>
<div class="text">
<p class="text-content-bellow">ESTA É UMA MENSAGEM AUTOMÁTICA. POR FAVOR, NÃO RESPONDA! </p>
</div>
</div>
<div id="footer">
<img id="img-footer" src="https://lh3.google.com/u/0/d/1XIwX1kH4eHyVIVRD3dL2lIXd_gTTMWd8=w1920-h937-iv2">
</div>
</div>
</body>
</html>