-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.css
81 lines (65 loc) · 1.53 KB
/
contact.css
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
@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@100&display=swap');
*{
font-family: 'Be Vietnam Pro', sans-serif;
padding:0;
box-sizing: border-box;
}
body{
background-color: white;
display: flex;
margin-left: 160px;
justify-content: center;
align-items: center;
flex-direction: column;
}
.sidenav {
height: 150%; /* Full-height: remove this if you want "auto" height */
width: 160px; /* Set the width of the sidebar */
position: fixed; /* Fixed Sidebar (stay in place on scroll) */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
background-color: transparent; /* Black */
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 5px;
}
.sidenav a {
float:left;
text-decoration: none;
font-weight: bold;
text-transform: lowercase;
padding: 6px 8px 6px 16px;
}
.sidenav a:hover {
transform: 1s;
background-color: #b7b7a4;
text-transform: uppercase;
}
div {
width: 354px;
float: left;
padding: 10px 0;
color:black;
}
img{
display:block;
margin-left: auto;
margin-right: auto;
width:20%;
}
img:hover{
display:block;
margin-left: auto;
margin-right: auto;
width:20.25%;
}
.bottomText{
position:fixed;
text-align: left;
bottom: 0px;
left: 0;
width: 160px;
color: black;
padding: 10px 10px;
font-size:smaller;
}