-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
129 lines (111 loc) · 2.36 KB
/
style.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
* {
margin: 0;
padding: 0;
-webkit-box-sizing: border-box;
box-sizing: border-box;
font-family: 'Josefin Sans', sans-serif;
}
#header .fixed {
width: 33vw;
height: 100%;
position: fixed;
left: 0;
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-ms-flex-direction: column;
flex-direction: column;
-webkit-box-pack: center;
-ms-flex-pack: center;
justify-content: center;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.6))), url("./img/bg1.jpg");
background: linear-gradient(rgba(0, 0, 0, 0.6)), url("./img/bg1.jpg");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}
#header .fixed img {
width: 155px;
height: 155px;
}
#header .fixed h3 {
font-family: 'Playfair Display', serif;
text-align: center;
}
#header .fixed p {
text-align: center;
color: #fff;
line-height: 8px;
font-size: 16px;
}
.box {
margin-bottom: 15px;
-webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.box img {
width: 100%;
}
.box a {
text-decoration: none;
color: black;
}
.box a i {
font-size: 25px;
padding-left: 5px;
cursor: pointer;
}
#site-main #info {
background: whitesmoke;
padding: 1rem;
padding: 30px 20px;
}
#site-main #info .row h1 {
font-family: 'Playfair Display', serif;
}
.technologies {
margin: 30px 0;
}
.technologies ul {
display: -webkit-box;
display: -ms-flexbox;
display: flex;
-ms-flex-pack: distribute;
justify-content: space-around;
-webkit-box-align: center;
-ms-flex-align: center;
align-items: center;
}
.technologies ul li {
list-style: none;
margin-right: 10px;
}
.technologies ul li img {
width: 60px;
}
.contact h1 {
font-family: 'Playfair Display', serif;
}
.contact p span {
color: #d6a308;
font-size: 18px;
font-family: 'Playfair Display', serif;
}
@media (max-width: 768px) {
#header .fixed {
position: relative;
width: 100%;
height: 50vh;
}
}
@media (max-width: 370px) {
.technologies ul li img {
width: 40px;
}
}
/*# sourceMappingURL=style.css.map */