-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 894 Bytes
/
style.css
File metadata and controls
63 lines (56 loc) · 894 Bytes
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
.grid-container {
display: grid;
grid-template-columns: 50% 50%;
background-color: white;
padding: 5px;
height: 100%;
}
.grid-item1{
background-color: royalblue;
display: grid;
}
.grid-item{
background-color: lightgrey;
display: grid;
}
h1, h3{
color: white;
font-weight: bolder;
margin-top: 25%;
}
span{
color: black;
font-weight: bolder;
}
p{
color: white;
}
li{
color: white;
}
.bdy{
margin-left: 20%;
}
.dd{
margin-left: 25%;
margin-top: 10%;
}
#pp{
color: black;
}
#show{
color: black;
font-size: xx-large;
}
#show1,#show3{
color: black;
font-size: medium;
}
#show2{
color: black;
font-size: xx-large;
}
#tt{
margin-left: 20%;
margin-top: 20%;
}