-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathstyle.css
executable file
·67 lines (55 loc) · 925 Bytes
/
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
html,
body {
height: 100%;
margin: 0px;
padding: 20px;
box-sizing: border-box;
}
body {
}
.paragraph-text {
color: blue;
}
.my-button {
border: 0px;
background-color: #fdfcdc;
padding: 10px;
border: 1px solid black;
}
.grid-container {
/*set the positioning of the grid*/
/*so that it fills the screen*/
position: absolute;
top: 0px;
left: 0px;
height: 100%;
width: 100%;
/*set display to grid*/
display: grid;
grid-template-columns: 250px auto;
grid-template-rows: 100% 100%;
}
.left-col {
/*style left column*/
padding: 15px;
background-color: #0081a7;
}
.right-col {
/*style right column*/
padding: 15px;
background-color: #00afb9;
}
/*format for each chirp message*/
.auto-div {
/*15px on top and botton*/
/*0 on left and right*/
margin: 15px 0;
padding: 10px;
background-color: #f07167;
border: 3px solid #fdfcdc;
}
.right {
margin: -15px 0;
padding: 3px;
text-align:right;
}