-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbutton.css
More file actions
108 lines (94 loc) · 1.63 KB
/
Copy pathbutton.css
File metadata and controls
108 lines (94 loc) · 1.63 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
body {
background: silver;
height: 500px;
width: 500px;
}
.header {
height: 100px;
background: #679C62;
}
.header-top{
display: flex;
justify-content: end;
}
#avatar {
background-color: silver;
float: bottom;
width: 100px;
height: 100px;
border-radius: 50%;
margin-top: 30px;
margin-left: 42%;
}
.fa-times{
color:white;
text-align: center;
width: 20px;
}
#close {
margin-top: 10px;
height: 20px;
width: 20px;
display: flex;
align-items: center;
background: #6A8F66;
margin-right: 10px;
}
#close p{
color: white;
font-family: bold;
text-align: center;
}
#avatar p{
color: #6A8F66;
font-family: bold;
text-align: center;
}
#content{
text-align: center;
margin-left: 5px;
margin-right: 5px;
margin-top: 50px;
}
#main-text{
text-align: center;
font-size: 24px;
font-weight: 500;
font-family:'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
color: #3e3e3e;
}
#side-text{
text-align: center;
font-size: 20px;
font-weight: 400;
font-family:Arial, Helvetica, sans-serif;
color: #616161;
}
.content-row{
display: flex;
justify-content: space-between;
}
.block-one{
justify-content: center;
display: flex;
width: 25%;
}
.block-two, .block-three, .block-four, .block-five{
display: flex;
justify-content: center;
width: 25%;
border-left: 2px solid #679C62;
}
.left-block p, .middle-block p, .right-block p{
text-align: center;
width: 100%;
font-size: 16px;
color: #3e3e3e;
font-family:Georgia, 'Times New Roman', Times, serif ;
}
.horizontal-rule{
color: #3e3e3e;
height: 3px;
margin-left: 20px;
margin-right: 20px;
}