-
Notifications
You must be signed in to change notification settings - Fork 0
/
main_styles.css
48 lines (43 loc) · 937 Bytes
/
main_styles.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
/* main_styles.css - This file is imported in to main.html for various styling needs.
* This allows you to apply styles in a simple manner, so you don't need to apply these
* to each individual element.
*/
/* This is an ID selector. Used for a single, distinct element */
#main-border {
border-color: black;
border-style: solid;
border-width: 5px;
position: absolute;
width: 100%;
height: 100%;
left: 0px;
top: 0px;
}
#field-border {
border-color: #999999;
border-style: solid;
border-width: 2px;
height: 21px;
position: relative;
}
/* This is a class selector. Used for multiple elements */
.field {
border-color: black;
border-right-style: solid;
border-width: 2px;
font-size: 18px;
position: relative;
display: inline;
}
#view-frame {
border-color: #6B6BB2;
border-style: solid;
border-width: 5px;
position: relative;
height: 85%;
}
.divider {
width:15px;
height:auto;
display:inline-block;
}