-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathedm.css
More file actions
156 lines (115 loc) · 2.43 KB
/
edm.css
File metadata and controls
156 lines (115 loc) · 2.43 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
126
127
128
129
130
131
132
133
134
135
136
form {
margin: 70px auto;
margin-bottom:10%;
background: url(https://images.unsplash.com/photo-1550184658-ff6132a71714?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=2180&q=80);
/* border: 2px red solid; */
background-size: 100% 500px;
border-radius: 5px;
width: 100%;
height: 550px;
box-shadow: 2px 3px 10px rgb(184, 184, 184);
font-family: 'Oswald', sans-serif;
}
.textboxe {
outline: 0;
height: 42px;
line-height: 42px;
padding: 0 16px;
background-color:white;
color: black;
border: 0;
-webkit-border-radius: 4px 0 0 4px;
border-radius: 4px 0 0 4px;
}
.textboxe:focus {
outline: 0;
background-color: grey;
}
.buttone {
outline: 0;
background: none;
background-color: rgba(38, 50, 56, 0.8);
height: 42px;
width: 42px;
text-align: center;
line-height: 42px;
border: 0;
color: #FFF;
font: normal normal normal 14px/1 FontAwesome;
font-size: 16px;
text-rendering: auto;
text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
-webkit-transition: background-color .4s ease;
transition: background-color .4s ease;
-webkit-border-radius: 0 4px 4px 0;
border-radius: 0 4px 4px 0;
}
.buttone:hover {
background-color: rgba(0, 150, 136, 0.8);
}
select {
-webkit-appearance: none;
-moz-appearance: none;
-ms-appearance: none;
appearance: none;
outline: 0;
box-shadow: none;
background: linear-gradient(to bottom right,#e44e7b,#B05574);
background-image: none;
border-bottom: 1px solid #eee;
}
/* Remove IE arrow */
select::-ms-expand {
display: none;
}
/* Custom Select */
.select {
position: relative;
display: flex;
width: 15em;
height: 3em;
line-height: 3;
background-color: black;
overflow: hidden;
border-radius: 7px;
}
select {
flex: 1;
padding: 0 .5em;
color: #fff;
cursor: pointer;
}
/* Arrow */
.select::after {
content: '\25BC';
position: absolute;
top: 0;
right: 0;
padding: 0 1em;
background: #34495e;
cursor: pointer;
pointer-events: none;
-webkit-transition: .25s all ease;
-o-transition: .25s all ease;
transition: .25s all ease;
}
/* Transition */
.select:hover::after {
color: #fff;
}
#timer {
font-size: 3em;
font-weight: 100;
color: white;
text-shadow: 0 0 20px #48C8FF;
div {
display: inline-block;
min-width: 90px;
span {
color: #B1CDF1;
display: block;
font-size: .35em;
font-weight: 400;
}
}
}