forked from IKHSRF/Toko_online
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
executable file
·162 lines (162 loc) · 3.23 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
.body{
background: #ff4931;
transition: all .5s;
padding: 1px;
}
.veen{
width: 70%;
margin: 100px auto;
background: rgba(255,255,255,.5);
min-height: 400px;
display:table;
position: relative;
box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
}
.veen > div {
display: table-cell;
vertical-align: middle;
text-align: center;
color: #fff;
}
.veen button{
background: transparent;
//background-image: linear-gradient(90deg, #e0b722, #ff4931);
display: inline-block;
padding: 10px 30px;
border: 3px solid #fff;
border-radius: 50px;
background-clip: padding-box;
position: relative;
color: #FFF;
//box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
transition: all .25s;
}
.veen button.dark{
border-color: #ff4931;
background: #ff4931;
}
.veen .move button.dark{
border-color: #e0b722;
background: #e0b722;
}
.veen .splits p{
font-size: 18px;
}
.veen button:active{
box-shadow: none;
}
.veen button:focus{
outline: none;
}
.veen > .wrapper {
position: absolute;
width: 40%;
height: 120%;
top: -10%;
left: 5%;
background: #fff;
box-shadow: 0 0 4px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.28);
transition: all .5s;
color: #303030;
overflow: hidden;
}
.veen .wrapper > div{
padding: 15px 30px 30px;
width: 100%;
transition: all .5s;
background: #fff;
width: 100%;
}
.veen .wrapper #login{
padding-top: 20%;
}
.veen .wrapper #register{
transform: translateY(-80%) translateX(100%);
}
.veen .wrapper.move #register{
transform: translateY(-80%) translateX(0%);
}
.veen .wrapper.move #login{
transform: translateX(-100%);
}
.veen .wrapper > div> div {
position: relative;
margin-bottom: 15px;
}
.veen .wrapper label{
position: absolute;
top: -7px;
font-size: 12px;
white-space: nowrap;
background: #fff;
text-align: left;
left: 15px;
padding: 0 5px;
color: #999;
pointer-events: none;
}
.veen .wrapper h3{
margin-bottom: 25px;
}
.veen .wrapper input{
height: 40px;
padding: 5px 15px;
width: 100%;
border: solid 1px #999;
}
.veen .wrapper input:focus{
outline: none;
border-color: #ff4931;
}
.veen > .wrapper.move{
left: 45%;
}
.veen > .wrapper.move input:focus{
border-color: #e0b722;
}
@media (max-width: 767px){
.veen{
padding: 5px;
margin: 0;
width: 100%;
display: block;
}
.veen > .wrapper{
position: relative;
height: auto;
top: 0;
left: 0;
width: 100%;
}
.veen > div{
display: inline-block;
}
.splits{
width: 50%;
background: #fff;
float: left;
}
.splits button{
width: 100%;
border-radius: 0;
background: #505050;
border: 0;
opacity: .7;
}
.splits button.active{
opacity: 1;
}
.splits button.active{
opacity: 1;
background: #ff4931;
}
.splits.rgstr-btn button.active{
background: #e0b722;
}
.splits p{
display: none;
}
.veen > .wrapper.move{
left: 0%;
}
}