-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
54 lines (48 loc) · 773 Bytes
/
index.css
File metadata and controls
54 lines (48 loc) · 773 Bytes
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
label{
font-size: 30px;
margin-bottom: 40px;
}
input{
font-size: 25px;
}
body {
perspective: 5000px
}
.btn{
font-size: 25px;
background-color: blue;
color: white;
}
.btn:hover{
background-color: black;
}
.form-container{
opacity: 0;
position: absolute;
text-align: center;
margin: 0;
padding: 20px;
background: teal;
width: 590px;
left: 50%;
margin-left: -295px;
transition: opacity .25s, transform .25s;
transform: rotateX(90deg) translateY(-220px) translateZ(219px);
}
.form-container.js-showing {
opacity: 1;
transform: none;
}
.padding-class{
margin: 20px;
}
.edit-planets {
position: fixed;
background: transparent;
font-size: 81px;
border: 0px;
right: 0;
top: 0;
padding: 0px 20px;
color: #ff22ffaa;
}