-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
110 lines (103 loc) · 1.43 KB
/
Copy pathstyle.css
File metadata and controls
110 lines (103 loc) · 1.43 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
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.header {
display: flex;
border-top: 1px solid purple;
border-top-width: thick;
justify-content: space-evenly;
}
#container {
display: flex;
flex-direction: column;
min-height: 100vh;
}
a {
color: gray;
text-decoration: none;
}
a:hover,
a.active {
color: blueviolet;
}
.flex-container {
display: flex;
border-top: 1px solid whitesmoke;
flex-direction: row;
flex: 1;
}
.pic-and-name {
flex: 1;
padding: 10px;
border-right: 1px solid whitesmoke;
}
.name {
text-align: center;
}
.name p {
margin-top: 0%;
}
#job {
color: gray;
margin-bottom: 0;
}
#email {
color: blueviolet;
margin-top: 0;
}
#interestp li {
list-style: square;
}
.pic {
width: 200px;
height: 200px;
position: relative;
overflow: hidden;
border-radius: 50%;
margin: auto;
}
.table {
flex: 2;
padding: 10px;
margin-left: 40px;
}
.whatever {
display: block;
}
.whatever tbody {
display: block;
}
.whatever tbody tr {
display: block;
}
.whatever tbody tr td {
display: block;
}
progress {
width: 90%;
}
h2 {
color: gray;
}
#row1 tr td {
display: flex;
display: block;
flex-direction: row;
}
.footer {
display: block;
border-top: 1px solid whitesmoke;
border-top-width: thick;
}
.footer p {
text-align: center;
}
@media only screen and (max-width: 600px) {
.flex-container {
flex-direction: column;
}
}
table {
width: 100%;
}