-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestStyle.css
113 lines (89 loc) · 1.48 KB
/
testStyle.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
* {
margin: 0;
padding: 0;
}
.main {
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: repeat(8, 1fr);
}
.search {
grid-row: 2 / 4 ;
grid-column: 2 / 3 ;
}
.header {
display: grid;
grid-template-columns: repeat(20, 1fr);
grid-template-rows: repeat(4, 1fr);
}
.footer {
grid-row: 7 / 9;
grid-column: 1 / 9;
text-align: center;
}
.gridPadding {
padding: 10px 10px;
}
.buttons {
grid-row: 4 / 5 ;
grid-column: 2 / 3;
}
.header {
grid-column: 1 / 9;
}
.about {
grid-column: 1 / 3;
text-align: center;
}
.store {
grid-column: 3 / 5;
text-align: center;
}
.blank {
grid-column: 5 / 13;
}
.gmail {
grid-column: 13 / 15;
text-align: center;
}
.images {
grid-column: 15 / 17;
text-align: center;
}
.boxes {
grid-column: 17 / 19;
}
.account {
grid-column: 19 / 21;
text-align: center;
}
.account p {
background-color: darkgreen;
border-radius: 100%;
height: 50px;
width: 50px;
text-align: center;
padding: 5px 5px;
}
.header
div:nth-child(even){
background-color: blue;
}
.header
div:nth-child(odd){
background-color: burlywood;
}
.footer
div:nth-child(even){
background-color: blue;
}
.footer
div:nth-child(odd){
background-color: burlywood;
}
#buttonIcn {
height: 15px;
}
img {
height: 275px;
}