-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlayout.css
More file actions
103 lines (85 loc) · 1.27 KB
/
Copy pathlayout.css
File metadata and controls
103 lines (85 loc) · 1.27 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
* {
padding: 0px;
margin: 0px;
box-sizing:border-box;
font-family: Arial, Helvetica, sans-serif;
}
@font-face {
font-family: Dotum;
src: url(media/fonts/gulim.ttf);
}
@font-face {
font-family: MyriadPro;
src: url(media/fonts/MYRIADPRO-REGULAR.OTF);
}
#borderDiv {
position:absolute;
border: solid 1px;
border-radius:0.5em;
width:calc(100% - 2em);
height:calc(100% - 2.1em);
margin:1em;
border-color:#aaa;
}
.navScreen {
position: absolute;
width:100%;
height:100%;
}
.contentArea {
width:100%;
height:94%;
float:left;
padding: 0px;
margin: 0px;
}
.bottomArea {
width:100%;
height:6%;
float:left;
}
#mainScreenLogo {
z-index: 99999;
right: 0px;
position: absolute;
top: 89%;
transform: translateY(-11%);
width: 8em;
height: 8em;
}
form {
width: 80%;
}
.cc {
position: absolute;
top: -55%;
left: 0%;
}
form div {
width: 100%;
padding: 0.5em;
}
video {
width:100%;
}
label {
float: left;
width: 5em;
/* positions the label text beside the input */
text-align: right;
margin-right: 5px;
}
input {
width: 15em;
}
textarea {
width: 15em;
}
body {
background-color: #fff
}
.button {
position: relative;
top: 50%;
transform: translateY(-50%);
}