-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
143 lines (124 loc) · 2.29 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
135
136
137
138
139
140
141
142
143
@font-face {
font-family: "Assassin";
src:
url("fonts/Assassin.woff2") format("woff2"),
url("fonts/Assassin.woff") format("woff");
}
*{
padding: 0;
margin: 0;
box-sizing: border-box;
overflow-y:hidden;
}
body{
display: flex;
align-items: center;
}
.bg {
height: 100vh;
width: 500px;
}
.left {
position: relative;
padding: 0px;
margin: 0px;
}
.logo-bg {
position: absolute;
height: 100px;
width: 500px;
background-color: rgba(0, 0, 0, 0.3);
top: 250px;
display: flex;
justify-content: center;
align-items: center;
}
.logo {
height: 80px;
width: 100px;
}
.logo-text {
font-family: "Assassin", sans-serif;
font-size: 80px;
color: white;
}
.logo-and-text {
display: flex;
position: absolute;
justify-content: space-evenly;
top: 10px;
}
.right {
height: 60vh;
width: 650px;
padding: 10px;
margin: 20px;
display: flex;
}
.head-text{
font-family: "Assassin", serif;
font-size: 30px;
font-weight: bolder;
margin-bottom: 30px;
}
.label-input{
display: flex;
justify-content: space-between;
width: 600px;
font-family: "Assassin";
font-weight: bolder;
font-size: 18px;
}
input {
margin-bottom: 20px;
border: 2px solid;
border-radius: 4px;
font-size: 20px;
margin-bottom: 20px;
min-width: 125px;
padding: 0.5rem;
transition: background-color 0.5s ease-out;
font-family: 'Times New Roman', Times, serif;
font-weight: 400;
}
input:optional, input:required{
border-color: gray;
}
input:focus:valid{
outline: none;
border-color: rgb(102, 216, 102);
}
input:focus:invalid {
outline: none;
border-color: red;
}
button{
background-color: #13aa52;
border: 1px solid #13aa52;
border-radius: 4px;
box-shadow: rgba(0, 0, 0, .1) 0 2px 4px 0;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-family: "Assassin", -apple-system, BlinkMacSystemFont, sans-serif;
font-size: 16px;
font-weight: 400;
outline: none;
outline: 0;
padding: 10px 25px;
text-align: center;
transform: translateY(0);
transition: transform 150ms, box-shadow 150ms;
user-select: none;
-webkit-user-select: none;
touch-action: manipulation;
}
button:hover {
box-shadow: rgba(0, 0, 0, .15) 0 3px 9px 0;
transform: translateY(-2px);
}
@media (min-width: 768px) {
button {
padding: 10px 30px;
}
}