-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
81 lines (77 loc) · 1.44 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
* {
margin: 0px;
padding: 0px;
}
body {
font-size: 120%;
background: bebum.png;
background-repeat: no-repeat;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
}
.header {
width: 300px;
height: 20px;
margin: 20px auto 0px;
color: yellow;
background: #000000;
text-align: center;
border-bottom: none;
border-radius: 10px 10px 0px 0px;
padding: 10px;
}
form, .content {
width: 280px;
height: px;
margin: 0px auto;
padding: 20px;
background: bebebum.png;
border-radius: 0px 0px 10px 10px;
}
.input-group {
margin: 10px 0px 10px 0px;
background: bebebum.png;
}
.input-group label {
display: block;
color: #FFFF00;
text-align: center;
margin: 3px;
}
.input-group input {
height: 18px;
width: 93%;
background: bebebum.png;
padding: 5px 10px;
font-size: 16px;
border-radius: 5px;
border: 1px solid gray;
}
.btn {
text-align: center;
padding: 10px;
font-size: 14px;
widht: 60px;
height: 45px;
color: black;
background: #777705;
border-radius: 5px;
}
.error {
width: 92%;
margin: 0px auto;
padding: 10px;
border: 1px solid #a94442;
color: #a94442;
background: #f2dede;
border-radius: 5px;
text-align: left;
}
.success {
color: #3c763d;
background: #dff0d8;
border: 1px solid #3c763d;
margin-bottom: 20px;
}