-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (117 loc) · 2.04 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
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
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,800');
* {
box-sizing:border-box;
margin:0;
}
body {
background: linear-gradient(60deg, #030fff 0%, #f43535 100%);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
font-family: 'Montserrat', sans-serif;
font-size:10px;
height: 100vh;
margin: -20px 0 50px;
}
.container {
background-color: white;
border-radius: 5px;
box-shadow: 0 14px 28px rgba(0,0,0,0.25),
0 10px 10px rgba(0,0,0,0.22);
position: relative;
overflow: hidden;
width: 768px;
max-width: 100%;
min-height: 480px;
min-width:370px;
}
h2 {
font-size:2rem;
margin-bottom:1rem;
}
.form-container {
display:flex;
}
.left-container {
flex:1;
height:480px;
background-color:rgb(0, 0, 0);
}
.right-container {
display:flex;
flex:1;
height:480px;
background-color: white;
justify-content:center;
align-items:center;
}
.left-container {
display:flex;
flex:1;
height:480px;
justify-content:center;
align-items:center;
color:white;
}
.left-container p {
font-size:0.9rem;
}
.right-inner-container {
width:70%;
height:80%;
text-align:center;
}
.left-inner-container {
height:50%;
width:80%;
text-align:center;
line-height:22px;
}
input, textarea {
background-color: #eee;
border: none;
padding: 12px 15px;
margin: 8px 0;
width: 100%;
font-family: 'Montserrat', sans-serif;
font-size:0.7rem;
}
textarea {
resize: none;
}
input:focus, textarea:focus{
outline:1px solid black;
}
button {
border-radius: 20px;
border: 1px solid #75c9df;
background-color: #75c9df;
color: #FFFFFF;
font-size: 12px;
font-weight: bold;
padding: 12px 45px;
letter-spacing: 1px;
text-transform: uppercase;
transition: transform 80ms ease-in;
cursor:pointer;
}
button:hover {
opacity:0.5;
}
@media only screen and (max-width: 600px) {
.left-container{
display: none;
}
.lg-view {
display:none;
}
}
@media only screen and (min-width: 600px) {
.sm-view {
display:none;
}
}
form p {
text-align:left;
}