-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
119 lines (101 loc) · 2.18 KB
/
style.css
File metadata and controls
119 lines (101 loc) · 2.18 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
div#childu
{
display: inline-block;
margin-top: 200px;
margin-left: auto;
width: auto;
}
div#botchildu
{
display: inline-block;
margin-left: auto;
margin-top: 25px;
}
div#parentu
{
display:flex;
justify-content: space-between;
}
div#select
{
height: 225px;
width: 400px;
margin-left: auto;
display: inline-block;
position:relative;
}
body{
height:100%;
width:100%;
background-image:url(bg.png);
background-repeat:no-repeat;
background-size:cover;
filter:progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.image.jpg',sizingMethod='scale');
-ms-filter:"progid:DXImageTransform.Microsoft.AlphaImageLoader(src='image.jpg',sizingMethod='scale')";
}
/*for index.html due to clash with home.html*/
div#parentu_main {
display: flex;
justify-content: space-between;
}
div#parentu_head {
display: flex;
justify-content: space-between;
}
#dbtn
{
position: fixed;
bottom: 0;
right: 0;
margin-right: 50px;
margin-bottom: 50px;
}
div#childu_main {
display: inline-block;
margin-left: auto;
margin-top: 150px;
}
div#passform
{
position: relative;
position: absolute;
top: 40%;
/* transform: translate(0, -50%); */
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%);
}
#upl
{
margin-right: 15px;
}
a.mdl-js-ripple-effect {
display: inline-block;//Important, without that the button won't appear correctly
position: relative; //without it, ripple will be offset
width: 50px; //Same as height, for a perfect circle
height: 50px; // Works with % values too
line-height: 50px; //same as button height, for the text to be centered horizontally
text-align: center; //Center horizontally
}
/* components for DP input */
.mdl-button--file {
input {
cursor: pointer;
height: 100%;
right: 0;
opacity: 0;
position: absolute;
top: 0;
width: 300px;
z-index: 4;
}
}
.mdl-textfield--file {
.mdl-textfield__input {
box-sizing: border-box;
width: calc(100% - 32px);
}
.mdl-button--file {
right: 0;
}
}