-
Notifications
You must be signed in to change notification settings - Fork 0
/
portfolio.css
105 lines (97 loc) · 2.03 KB
/
portfolio.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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Sans&family=Playfair+Display&family=Source+Sans+Pro:wght@300&display=swap');
*{
margin: 0;
padding: 0;
}
.container {
display: flex;
}
.sidebar{
background-color: rgb(19, 19, 20);
/*background-image: url("./image/sidenav2.jpg");
background-repeat: no-repeat;
height: 100%;
background-size: cover;
background-position: center;*/
width: 430px;
font-family: 'Playfair Display', serif;
}
.sidebar nav{
padding: 30px;
height: 100vh;
}
.sidebar nav li{
list-style: none;
font-size: 20px;
padding: 21px 0px 10px 0px;
}
.sidebar nav li a {
text-decoration: none;
color: rgb(255, 249, 249);
}
.sidebar nav li a:hover{
background-color: rgb(255, 241, 241);
color: black;
}
.main{
/* background-color: yellow;*/
width: 90vw;
}
.info{
/*background-color: rgb(0, 17, 255);*/
height: 58vh;
width: 80vw;
margin:130px auto;
display: flex;
justify-content: space-around;
}
.pic img{
width: 470px;
height: 58vh;
}
.devinfo{
display: flex;
justify-content: center;
flex-direction: column;
font-family: 'Source Sans Pro', sans-serif;
margin-left: -540px;
}
}
.hello{
font-size: 45px;
}
.name{
font-size: 35px;
font-family: 'Playfair Display', serif;
}
.about{
font-size: 25px;
margin-top: 5px;
}
.moreabout {
font-size: 20px;
margin-top: 15px;
}
.buttons button:hover {
background-color: black;
}
.buttons button{
padding: 10px 14px;
border-radius: 22px;
color: white;
background-color: rgb(253, 125, 5);
font-weight: bold;
font-size: 17px;
margin-top: 30px;
cursor: pointer;
}
@media(max-width:1615){
*{
background-color: red;
}
.sidebar{
transform: translate(-443px,0px);
position: absolute;
}
}