-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
94 lines (81 loc) · 1.37 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
h1 {
text-align: center;
color: blueviolet;
}
* {
box-sizing: border-box;
}
.scrolling {
height: 100%;
overflow: auto;
max-height: 1000px;
}
.colrBack{
background-color:#bbb;
}
/* Create two equal columns that floats next to each other */
.column-left {
float: left;
width: 20%;
padding: 10px;
/* Should be removed. Only for demonstration */
text-align: center;
}
.column-centre {
float: left;
width: 40%;
padding: 10px;
/* Should be removed. Only for demonstration */
text-align: center;
}
.column-right {
float: left;
width: 40%;
padding: 10px;
text-align: center;
/* Should be removed. Only for demonstration */
}
/* Clear floats after the columns */
.rowSelf:after {
content: "";
display: table;
clear: both;
}
.displayFullImg{
}
.inputLabel{
}
.listStyle{
list-style: none;
padding-left: 0px;
}
.thumb{
padding-top: 20px
}
.equalHeight{
min-height: 1000px;
}
.setMargin{
margin-bottom: 10px;
text-align: right;
}
.buttonClass{
position: absolute;
}
.submitButton{
background-color:#68a964;
margin-left:auto;
margin-right:auto;
margin-top:22%;
margin-bottom:0%
}
.marginspace{
margin-bottom: 10px;
padding-left: 10px;
padding-right: 10px
margin-top: 10px;
margin-right: 20px;
}
.boxed {
border: 2px solid blue ;
}