-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (115 loc) · 1.86 KB
/
style.css
File metadata and controls
115 lines (115 loc) · 1.86 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
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
114
115
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color:rgb(188, 194, 201);
font-family:'Trebuchet MS', Arial;
font-size: 10px;
width: 100%;
}
.grid-container {
display: grid;
grid-template-columns: repeat(10, 1fr);
grid-template-rows: 0px 370px 600px auto auto;
grid-template-areas:
"n n n n n n n n n n"
"h h h h h h h h h h"
"l l l l r r r r r r"
"l l l l r r r r r r"
"l l l l r r r r r r";
}
.grid-item {
place-items: center;
font-size: 25px;
text-align:center;
height: auto;
width: auto;
display: flex;
flex-direction: row;
justify-content: space-around
}
.header{
grid-area: h;
background-color: white;
}
.left{
background-color:darkslategrey;
grid-area: l;
align-items: center;
}
.right{
background-color:lavender;
grid-area: r;
}
.header > div.img {
width: auto;
height: auto;
margin: 15px;
border-radius: 20%;
overflow: hidden;
}
.header > div {
width: 90%;
height: 80%;
margin: 15px;
overflow: hidden;
}
.left{
color: white;
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
text-align: start;
}
.left > div {
height: 100%;
width: 85%;
margin: 10px;
padding: 10px;
font-size: 20px;
text-align: start;
}
.right{
height: 100%;
width: 100%;
display: flex;
flex-direction: column;
}
.right > div {
height: 100%;
width: 95%;
padding: 20px;
}
ul{
font-style: italic;
text-align: start;
font-size: 20px;
display: inline;
}
p{
font-size: 20px;
text-align: start;
}
h3{
text-align: start;
}
.progress{
color: #877B66;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding-bottom: 5px;
}
.grid-item > .navigation{
width: 100%;
gap: 200px;
grid-area: n;
display: flex;
list-style-type: none;
justify-content: space-around;
background-color: rgb(209, 209, 209);
}