-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmainPage.css
More file actions
88 lines (75 loc) · 1.36 KB
/
Copy pathmainPage.css
File metadata and controls
88 lines (75 loc) · 1.36 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
body {
margin: 0;
transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#logoContainer{
position: absolute;
height: 80%;
width: 100%;
top: 0%;
transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
background: url(critfail_pic2.png) no-repeat center center;
background-size: contain;
}
#topRowContainer{
position: absolute;
height: 25%;
width: 100%;
top: 50%;
opacity: 0;
transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#bottomRowContainer{
position: absolute;
height: 20%;
width: 100%;
top: 75%;
opacity: 0;
transition: all 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#subtitle{
position: absolute;
height: 15%;
width: 90%;
left: 1em;
bottom: 0%;
text-align: left;
font-size: 2em;
color: white;
}
.disabled{
pointer-events: none;
cursor: default;
}
.column {
float: left;
width: 33.33%;
text-align: center;
}
.row{
position: relative;
margin: 3em;
}
.button.topButton {
font-size: calc(2vw + 1em);
margin: 0.2em 0.1em;
}
.button.bottomButton {
font-size: calc(1vw + 1em);
}
#submitButton {
float: left;
text-align: left;
}
#cancelButton {
float: right;
text-align: right;
}
#loginButton {
float: left;
text-align: left;
}
#faqButton {
float: right;
text-align: right;
}