-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle_2.css
More file actions
91 lines (90 loc) · 1.58 KB
/
style_2.css
File metadata and controls
91 lines (90 loc) · 1.58 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
*{
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
background-color:#AFC97E;
font-family:'Trebuchet MS', Arial;
font-size: 10px;
width: 100%;
}
.grid-container{
display: grid;
height: 100%;
grid-template-columns: 30% 70%;
grid-template-rows: 100%;
background-color:#AFC97E;
}
.grid-item{
display: flex;
place-items: center;
font-size: 25px;
height: 100%;
flex-direction: column;
justify-content:space-around;
}
.left{
margin-left: 35px;
margin-right: 35px;
background-color: #D4E6B5;
}
.flex-item{
/*border: 1px solid;*/
height: 30%;
width: 100%;
text-align:center;
line-height: 30px;
font-size: 20px;
margin-bottom: 20px;
}
.img{
width: auto;
height: auto;
margin: 15px;
border-radius: 50%;
overflow: hidden;
}
.right{
margin-left: 20px;
margin-right: 15px;
}
p{
font-size: 16px;
text-align: left;
}
h2{
line-height: normal;
margin-bottom: 10px;
}
h3{
text-align: left;
line-height: 40px;
}
.progress{
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
padding-bottom: 5px;
margin-right: 200px;
}
.contacts{
font-size: 82%;
}
ul{
list-style-type: none;
}
.navigation{
font-size: 20px;
display: flex;
/*
flex-direction: row;
*/
list-style-type: none;
justify-content: space-around;
margin-bottom: 3px;
gap: 200px;
width: 100%;
background-color: rgb(97, 194, 129);
}