-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
127 lines (125 loc) · 2.4 KB
/
style.css
File metadata and controls
127 lines (125 loc) · 2.4 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
body.auth {
/*
background-image: url("image/auth-background.gif");
background-image: url("image/background.jpg");
background-image: url("image/bg.jpg");
*/
background-image: url("image/auth-background.jpg");
}
body.auth .box {
width: 80%;
height: auto;
margin: auto;
margin-top: 70px;
}
body.auth .box .input {
margin: auto;
text-align: center;
width: 330px;
height: 40px;
text-align: center;
border: 2px solid white;
background-color: #faf7f8;
border-radius: 8px;
/*
border-top-left-radius: 3px;
border-top-right-radius: 3px;
border-bottom-left-radius: 3px;
border-bottom-right-radius: 3px;
*/
}
body.auth .box .input .icon {
width: 30px;
float: left;
color: #929594;
margin-top: 6px;
margin-left: 2px;
margin-right: 2px;
}
textarea:focus, input:focus{
outline: none;
}
body.auth .box .input input {
width: calc(100% - 50px);
float: right;
height: 40px;
padding-left: 5px;
padding-right: 5px;
border: 0px;
background-color: transparent;
}
body.auth .box .button {
width: 180px;
height: 45px;
text-align: center;
padding: 10px;
color: white;
font-weight: bold;
cursor: pointer;
border: 2px solid white;
background-color: #3cb39a;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
body.auth .box .sidebar {
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
width: 350px;
height: 500px;
float: right;
background-color: #3cb39a;
color: white;
text-align: center;
box-shadow: -20px 16px 20px rgba(0, 0, 0, 0.33);
}
body.auth .box .sidebar h2 {
margin-top: 150px;
}
body.auth .box .sidebar h3 {
padding: 10px;
font-size: 16px;
font-weight: normal;
}
body.auth .box .content .logo {
display: inline-block;
float: left;
padding: 25px;
}
/*
body.auth .box .content .logo h1 {
font-size: 12px;
float: right;
margin-top: 15px;
margin-left: 10px;
}
*/
.clear {
clear: both;
}
body.auth .box .content h1 {
text-align: center;
}
body.auth .box .content h1 {
color: #3aaf9f;
}
body.auth .box .content {
box-shadow: -20px 16px 20px rgba(0, 0, 0, 0.33);
text-align: center;
float: left;
width: calc(100% - 350px);
background-color: white;
height: 500px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
}
body.auth .box .content a {
text-decoration: none;
color: black;
padding-bottom: 5px;
border-bottom: 2px solid #eff5f3;
}
body.auth .box .content .button {
border: none;
}