- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
Latest commit
121 lines (108 loc) · 1.6 KB
/
Copy pathstyle.css
File metadata and controls
121 lines (108 loc) · 1.6 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
116
117
118
119
120
121
a {
color: black;
text-decoration: none;
}
h1,h2,h3,h4{
margin:0px;
}
headerh1{
font-size:6vw;
}
sectionh1{
font-size:min(5vw,25pt);
border-bottom:5px solid black;
margin-bottom:20px;
}
section{
margin:20px0px20px0px;
clear:both;
}
sectionp{
margin:0px0px25px0px;
}
.highlight{
color:#ff9e00;
}
.highlight-alt{
color:#029688;
}
#about-section{
display: flex;
flex-direction: row;
}
.profsite-about-img{
/* float:left;
*/display: inline-block;
max-width:400px;
margin-right:3%;
flex-grow:1;
}
.profsite-about-not-img{
/* float:right;
*/display: inline-block;
font-size:min(4vw,20pt);
width:600px;
/* width:50%;*/
vertical-align: top;
flex-grow:1;
}
/*For Phones*/
@media screen and (max-width:600px) {
.profsite-about-not-img{
margin-top:20px;
width:100%;
}
}
.profsite-header{
width:75%;
margin:auto;
padding:10px;
background-color:#009688;
color:white;
}
/*For Phones*/
@media screen and (max-width:600px) {
.profsite-header{
font-size:10vw;
width:95%;
}
}
/*For Desktop*/
@media screen and (min-width:600px) {
.profsite-bulk{
width:75%;
margin:auto;
}
}
/*For Phones*/
@media screen and (max-width:600px) {
.profsite-bulk{
width:95%;
margin:auto;
}
}
.contact-img{
width:min(10vw,70px);
}
.profsite-contact{
display: inline-block;
text-align: center;
flex-grow:1;
}
.profsite-contacth2{
font-size:min(4vw,1.5em);
}
.project-grouph2{
font-size:min(4vw,1.5em);
}
.project-groupp{
font-size:min(3vw,1em);
}
#contacts-box{
display: flex;
flex-direction: row;
align-items: flex-end;
}
#old-site-section{
text-align: center;
}