-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
124 lines (104 loc) · 1.93 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
* {
font-family: Segoe UI, "Roboto", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
html {
font-size: 13px;
height: 100%;
}
[clear] {
display: block;
content: '';
clear: both;
}
div {
overflow-wrap: break-word;
}
a[href] {
text-decoration: none;
color: inherit;
}
input, .button, textarea,
ul.errorlist > li
{
line-height: 20px;
font-family: inherit;
font-size: inherit;
border: 1px solid #dadada;
}
input[type=submit], .button {
padding: 5px 20px;
}
textarea {
display: block;
width: 100%;
padding: 10px;
min-height: 82px;
min-height: 82px;
border: 1px solid #ddd;
resize: vertical;
outline: none;
}
menu, ul, li {
list-style: none;
}
/****/
.middle-center {
position: absolute;
top: 30%; left: 50%;
transform: translate(-50%, -30%);
width: 300px;
padding: 12px;
box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
}
.middle-center > ul.errorlist > li {
background-color: #FFD2D2;
color: #D8000C;
border: 1px solid #D8000C;
}
.middle-center > ul.errorlist > li,
.middle-center textarea,
.middle-center input {
display: block;
width: 100%;
margin-bottom: 6px;
padding: 6px 12px;
}
.middle-center .button {
width: 100%;
margin-bottom: 6px;
}
.middle-center input[type=submit] {
margin-bottom: 0px;
}
.button {
text-align: center;
background-color: #dadada;
display: block;
}
.button-signout {
margin-top: 6px;
margin-bottom: 0px !important;
}
/**/
.info {
padding: 6px 12px;
margin-top: 6px;
}
.info-success {
background-color: #d2ffd5;
color: #00b935;
border: 1px solid #00b935;
}
.info-warning {
background-color: #feffd2;
color: #b99e00;
border: 1px solid #b99e00;
}
.info-error {
background-color: #FFD2D2;
color: #D8000C;
border: 1px solid #D8000C;
}