This repository has been archived by the owner on Feb 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
105 lines (92 loc) · 2.35 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
body{
background:url(http://subtlepatterns2015.subtlepatterns.netdna-cdn.com/patterns/dark_wall.png);
}
.wrapper {
margin:auto;
}
/*sass variables used*/
$full:100%;
$auto:0 auto;
$align:center;
@mixin disable{
outline:none;
border:none;
}
@mixin easeme{
-webkit-transition:1s ease;
-moz-transition:1s ease;
-o-transition:1s ease;
-ms-transition:1s ease;
transition:1s ease;
}
/*site container*/
.wrapper{
width:420px;
margin:$auto;
}
h1{
text-align:$align;
padding:30px 0px 0px 0px;
font:25px Oswald;
color:#FFF;
text-transform:uppercase;
text-shadow:#000 0px 1px 5px;
margin:0px;
}
p{
font:13px Open Sans;
color:#6E6E6E;
text-shadow:#000 0px 1px 5px;
margin-bottom:30px;
}
.form{
width:$full;
}
input[type="text"],input[type="email"],input[type="tel"]{
width:98%;
padding:15px 0px 15px 8px;
border-radius:5px;
box-shadow:inset 4px 6px 10px -4px rgba(0,0,0,0.3), 0 1px 1px -1px rgba(255,255,255,0.3);
background:rgba(0,0,0,0.2);
@include disable;
border:1px solid rgba(0,0,0,1);
margin-bottom:10px;
color:#6E6E6E;
text-shadow:#000 0px 1px 5px;
}
input[type="submit"]{
width:100%;
padding:15px;
border-radius:5px;
@include disable;
background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#28D2DE), to(#1A878F));
background-image: -webkit-linear-gradient(#28D2DE 0%, #1A878F 100%);
background-image: -moz-linear-gradient(#28D2DE 0%, #1A878F 100%);
background-image: -o-linear-gradient(#28D2DE 0%, #1A878F 100%);
background-image: linear-gradient(#28D2DE 0%, #1A878F 100%);
font:14px Oswald;
color:#FFF;
text-transform:uppercase;
text-shadow:#000 0px 1px 5px;
border:1px solid #000;
opacity:0.7;
-webkit-box-shadow: 0 8px 6px -6px rgba(0,0,0,0.7);
-moz-box-shadow: 0 8px 6px -6px rgba(0,0,0,0.7);
box-shadow: 0 8px 6px -6px rgba(0,0,0,0.7);
border-top:1px solid rgba(255,255,255,0.8)!important;
-webkit-box-reflect: below 0px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, transparent), to(rgba(255,255,255,0.2)));
}
input:focus{
box-shadow:inset 4px 6px 10px -4px rgba(0,0,0,0.7), 0 1px 1px -1px rgba(255,255,255,0.3);
background:rgba(0,0,0,0.3);
@include easeme;
}
input[type="submit"]:hover{
opacity:1;
cursor:pointer;
}
.name-help,.email-help,.contact-help,.roll-help,.dept-help{
display:none;
padding:0px;
margin:0px 0px 15px 0px;
}