-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.css
More file actions
executable file
·109 lines (88 loc) · 1.67 KB
/
template.css
File metadata and controls
executable file
·109 lines (88 loc) · 1.67 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
html
{
height: 100%;
width: 100%;
}
*
{
box-sizing: border-box;
}
body
{
width: 100%;
height: 100%;
background-image: linear-gradient(#D0D0D0, #F0F0F0);
background-attachment: fixed;
background-color: #F0F0F0;
background-repeat: no-repeat;
padding-left: 15px;
padding-right: 15px;
padding-top: 10px;
font-family: 'Ubuntu', sans-serif;
}
.coluna-100
{
width: 100%;
}
.captcha
{
border: 1px solid #777777;
}
input[type=text],input[type=password]
{
border: 1px solid #777777;
background: #F0F0F0;
padding: 4px;
margin:2px;
}
div.formulario div
{
padding: 6px;
}
.button-submit
{
transition-duration: 0.4s;
cursor: pointer;
width: 180px;
height: 36px;
padding: 6px 6px;
font-size: 16px;
font-family: 'Ubuntu', sans-serif;
text-decoration: none;
font-weight: bold;
text-align: center;
text-shadow:0px 0px 5px black, 0px 0px 3px black, 1px 1px 3px black;
box-shadow:0px 0px 5px #777777;
background-color: #77B099;
color: #E9E9E9;
border: 1px solid #777777;
border-right-color: black;
border-bottom-color: black;
}
.button-submit
{
background-color: #77B099;
}
.button-submit:hover
{
background-color: #AAEECC;
color: #F9F9F9;
}
.error
{
background-color: #E0C0C0;
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
padding: 5px;
border-radius: 8px;
text-align: center;
margin-bottom: 15px;
}
.success
{
background-color: #E0FFE0;
box-shadow: 0px 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
padding: 10px;
border-radius: 8px;
text-align: center;
margin-bottom: 10px;
}