-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathhome_style.css
More file actions
137 lines (120 loc) · 2.15 KB
/
home_style.css
File metadata and controls
137 lines (120 loc) · 2.15 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
137
@import url('https://fonts.googleapis.com/css?family=Fira+Sans');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
@import url('https://fonts.googleapis.com/css?family=Encode+Sans+Semi+Expanded');
html,body
{
margin:0;
padding:0;
width:100%;
}
body
{
background-color:#d9d9d9;
}
#main_head
{
background-color:#009900;
position:fixed;
width:100%;
z-index:100;
height:80px;
-webkit-box-shadow: 0px 0px 28px 4px rgba(0,0,0,0.75);
-moz-box-shadow: 0px 0px 28px 4px rgba(0,0,0,0.75);
box-shadow: 0px 0px 28px 4px rgba(0,0,0,0.75);
}
#heading_content
{
position:relative;
top:25px;
margin-left:20px;
font-size:25px;
font-family: 'Fira Sans', sans-serif;
color:white;
}
#main_form
{
background-color:white;
border:none;
border-radius:20px;
-webkit-box-shadow: 0px 0px 28px 1px rgba(0,0,0,0.8);
-moz-box-shadow: 0px 0px 28px 1px rgba(0,0,0,0.8);
box-shadow: 0px 0px 28px 1px rgba(0,0,0,0.8);
width:60%;
text-align:left;
font-size:22px;
position:relative;
font-family: 'Source Sans Pro', sans-serif;
top:150px;
padding:12px;
margin-bottom:100px;
}
#head_form
{
padding:10px;
}
input
{
background:transparent;
border:none;
width:60%;
border-bottom:1px solid #cccccc;
padding:12px;
margin-top:20px;
margin-bottom:20px;
font-size:17px;
position:relative;
}
input:focus{
outline: none;
}
input:focus
{
border-bottom:2px solid #009900;
transition:0.15s ease-out;
color:#1a1a1a;
}
#submit,#cancel,#reset
{
position:relative;
left:26%;
top:20px;
margin-bottom:20px;
background:transparent;
border:none;
cursor:pointer;
padding:10px;
font-size:15px;
color:#009900;
font-weight:bold;
}
#submit:focus,#cancel:focus,#reset:focus
{
outline:none;
background-color:#cccccc;
}
#afterform
{
position:relative;
padding:7px;
margin-bottom:30px;
}
.afterform
{
margin-top:7px;
margin-bottom:7px;
}
a
{
color:#009900;
font-size:16px;
text-decoration:none;
font-family: 'Encode Sans Semi Expanded', sans-serif;
}
a:hover
{
text-decoration:underline;
}
.afterformlinks
{
outline:none;
}