-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
44 lines (42 loc) · 802 Bytes
/
index.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
html{
min-height: 100%;
}
body {
margin: 0;
padding: 0;
font-family: sans-serif;
background: url(/image/ducky.png) no-repeat;
background-size: 100%;
background-position: top;
background-color: #e682b9;
min-height: 100%
}
form{
padding: 20px;
margin-top: 60px;
}
form button, form h5{
margin: 20px 0;
}
input[type=text]:not(.browser-default):focus:not([readonly]),
input[type=email]:not(.browser-default):focus:not([readonly]),
input[type=password]:not(.browser-default):focus:not([readonly]),
textarea.materialize-textarea:focus:not([readonly]){
border-color: #ec407a;
box-shadow: none;
}
.secondary-content{
color: #2196f3 !important;
}
.material-icons{
margin: 0 10px !important;
}
.delete{
color: red;
}
.edit{
color: green;
}
.button{
float: right;
}