-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (60 loc) · 1.14 KB
/
styles.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
body{
background-color: beige;;
}
.pagewrapper {
display: flex;
justify-content: center;
flex: none;
gap: 20px;
}
.wrappersixteen {
display: inline-grid;
height: 960px;
width: 960px;
grid-template-columns: repeat(16, 1fr);
border: 2px solid black;
}
.wrappereight {
display: inline-grid;
height: 960px;
width: 960px;
grid-template-columns: repeat(8, 1fr);
border: 2px solid black;
}
.sidebar {
display: flex;
background-color: beige;
flex-direction: column;
justify-content: space-around;
align-items: center;
height: 960px;
width: 200px;
}
.sidebar div {
width: 160px;
height: 160px;
text-justify: center;
text-align: center;
border: 1px solid black;
border-radius: 50px;
}
.sidebar.right div{
display: flex;
justify-content: center;
align-items: center;
background-color: white;
}
.text {
font-size: 36px;
font-weight: 700;
}
.color:hover{
border: 2px solid black;
background-color: orange;
color: white;
}
.sidebar.right div:hover{
border: 2px solid black;
background-color: orange;
color: white;
}