-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathform.css
44 lines (40 loc) · 925 Bytes
/
form.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
/*
## Animations
## ここではアニメーションに関するcomponentを記述する
よろしくね
```
<div class="row">
<div class="flex flex-xs-auto"></div>
<div class="flex flex-xs-6">
<div class="frame frame--login z1">
<div class="header">
<div class="title">
会員登録
</div>
</div>
<div class="content">
これはコンンテンツ部分です。
</div>
</div>
</div>
<div class="flex flex-xs-auto"></div>
</div>
```
*/
.frame.frame--login{
-webkit-font-smoothing: antialiased;
height: 100%;
background-color: #FF4081;
}
.frame.frame--login > .header{
background-color: #c51162;
color: white;
box-shadow: 0 2px 4px -1px rgba(0,0,0,.14),0 4px 5px 0 rgba(0,0,0,.098),0 1px 10px 0 rgba(0,0,0,.084);
padding: 8px;
position: relative;
z-index: 5;
}
.frame.frame--login > .content{
color: white;
padding: 8px;
}