-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab.css
More file actions
94 lines (76 loc) · 2.55 KB
/
lab.css
File metadata and controls
94 lines (76 loc) · 2.55 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
/* Add background color to the body of my lab calculator webpage assignment. */
body {
display: flex;
flex-direction: column;
background-color: rgb(122, 121, 110);
}
/* Create row container to house one (1) individual column. */
.greeting-container {
margin-top: 0px;
display: flex;
flex-wrap: wrap;
border-top: 50px rgb(184, 169, 184) solid;
border-left: 50px rgb(184, 169, 184) solid;
border-right: 50px rgb(184, 169, 184) solid;
border-bottom: 50px rgb(184, 169, 184) solid;
background-color: rgb(255, 255, 255);
margin-top: 55px;
align-items: center;
justify-content: center;
}
/* Create one (1) column container inside rows in order to places four (4) section
inside the one (1) container.*/
.greeting-container > div {
display: flex;
flex: 70%;
max-width: 70%;
background-color: rgb(184, 169, 184);
border: 10px rgb(228, 227, 207) solid;
font-family: 'Book Antiqua', Times, serif;
font-size: 20px;
text-align: center;
color: rgb(255, 255, 255);
align-items: center;
justify-content: center;
}
/* Create addition id for border size and font styles. */
#addition {
border: 10px rgb(228, 227, 207) solid;
font-family: 'Book Antiqua', Times, serif;
font-size: 18px;
color: rgb(255, 255, 255);
}
/* Create substraction id for border size and font styles. */
#subtraction {
border: 10px rgb(228, 227, 207) solid;
font-family: 'Book Antiqua', Times, serif;
font-size: 18px;
color: rgb(255, 255, 255);
}
/* Create multiplication id for border size and font styles. */
#multiplication {
border: 10px rgb(228, 227, 207) solid;
font-family: 'Book Antiqua', Times, serif;
font-size: 18px;
color: rgb(255, 255, 255);
}
/* Create division id for border size and font styles. */
#division {
border: 10px rgb(228, 227, 207) solid;
font-family: 'Book Antiqua', Times, serif;
font-size: 18px;
color: rgb(255, 255, 255);
}
/* Create modulus id for border size and font styles. */
#modulus {
border: 10px rgb(228, 227, 207) solid;
font-family: 'Book Antiqua', Times, serif;
font-size: 18px;
color: rgb(255, 255, 255);
}
/* Create p1 class for border font styles. */
.p1 {
font-family: 'Book Antiqua', Times, serif;
font-size: 15px;
color: rgb(255, 255, 255);
}