-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathApp.css
73 lines (66 loc) · 1.03 KB
/
App.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
body{
background:gray;
margin: 0;
padding: 0;
}
.header{
background: violet;
font-size: 250%;
color: white;
/* padding: 0, 500px; */
}
.nav{
margin-left: 40%;
}
.butt{
margin-left: 35%;
}
.btn{
background: green;
border-radius: 20px;
color: aliceblue;
}
.btn2{
background: skyblue;
color: aliceblue;
border-radius: 20px;
margin: 5px;
}
.form {
background: white;
max-width: 980%;
max-height: 300%;
/* border-style: solid; */
border-radius: 10px;
}
.size{
font-size: 25px;
}
.header h1{
margin: 0;
}
.contentArea{
max-width: 980px;
margin: 0 auto 40px;
overflow: auto;
padding: 20px;
box-sizing: border-box;
}
.leftPane{
float: left; /* important to note */
width: 50%;
/* border-style: solid; */
/* border-radius: 5%; */
}
.rightPane{
float: right; /* important to note */
width: 50%;
/* border-style: solid; */
/* border-radius: 5%; */
}
.leftPane, .rightPane{
padding: 0;
box-sizing: border-box;
/* border: 3px double #666; */
/* min-height: 250px; */
}