-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
93 lines (92 loc) · 1.48 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
html {
background: url("background.jpg") no-repeat;
background-size: cover;
min-height: 100%
}
body {
background-color: transparent;
}
a {
outline: none;
text-decoration: none;
padding: 2px 1px 0
}
a:link {
color: #265301
}
a:visited {
color: #437A16
}
a:focus {
border-bottom: 1px solid;
background: #BAE498
}
a:hover {
background: #CDFEAA
}
a:active {
background: #265301;
color: #CDFEAA
}
a[href*="http"] {
background: url('icon.png') no-repeat 100% 0;
background-size: 16px 16px;
padding-right: 20px
}
#registration-form {
max-width: 900px;
margin: 120px auto
}
#registration-form .image {
float: left;
background-image: url("desk.jpg");
height: 740px;
width: 50%;
background-size: cover;
background-position: 25%
}
#registration-form .frm {
float: right;
height: 740px;
width: 50%;
min-width: 250px;
padding: 0 35px;
background-size: 100% 100%;
background-color: white
}
#registration-form h1 {
margin-top: 30px;
margin-bottom: 20px
}
#registration-form .form-control {
width: 90%;
padding: 12px 20px;
height: auto
}
@media screen and (max-width: 700px) {
#registration-form .image {
width: 50%;
background-position: 70%
}
#registration-form .frm {
width: 80%
}
#registration-form .form-control {
width: 90%
}
}
@media screen and (max-width: 500px) {
#registration-form .image {
display: none
}
#registration-form .frm {
width: 100%
}
#registration-form h1 {
text-align: center
}
#registration-form .btn {
width: 100%;
margin-top: 20px
}
}