-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css.bak
More file actions
103 lines (87 loc) · 1.44 KB
/
style.css.bak
File metadata and controls
103 lines (87 loc) · 1.44 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
body {
margin: 0;
text-align: center;
font-family: 'Playfair Display', serif;
color: #d3d1d1;
}
section {
height: 100vh;
width: 100vw;
}
.intro {
color: #666;
display: flex;
align-items: center;
justify-content: center;
background: url('./images/background.jpg') no-repeat;
background-size: cover;
}
@media screen and (max-width: 768px) {
.box {
width: 70vw;
height: 30vh;
}
}
@media screen and (min-width: 769px) {
.box {
width: 30vw;
height: 30vh;
}
}
.box {
display: flex;
flex-direction: column;
justify-content: space-between;
background-color: rgba(250, 250, 250, 0.4);
border-radius: 10px;
box-shadow: 0 10px 30px 0 rgba(96, 96, 96, 0.4);
padding: 40px;
}
.name {
color: #555;
font-size: 2em;
margin: 0 !important;
font-weight: 900;
}
.description {
margin: 0 !important;
font-size: 0.8em;
font-weight: 200;
}
.info {
display: flex;
flex-direction: column;
justify-content: space-around;
}
.row {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
}
.logo {
width: 60px;
margin: 10px;
}
.logo:hover {
opacity: 0.5;
}
.about {
display: flex;
justify-content: center;
align-items: center;
border-radius: 5px;
background-color: #FF7170;
width: 100px;
height: 40px;
color: white;
}
.about:hover {
opacity: 0.5;
cursor: pointer;
}
.resume {
display: flex;
justify-content: center;
align-items: center;
}