-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcss.css
118 lines (95 loc) · 1.59 KB
/
css.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
html {
background-color: gainsboro;
}
body {
margin: 1rem auto 2rem;
max-width: 800px;
width: 80vw;
font-family: 'Lato', sans-serif;
border-radius: 0.7em;
padding: 2em 2em;
background-color: #f8f8f8;
-webkit-box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.25);
}
h1 {
font-size: 36px;
margin: 0;
}
h2 {
color: gray;
}
h3 {
margin-top: 3rem;
text-transform: uppercase;
color: gray;
}
h4 {
margin: 1rem 0 0.5rem;
}
p {
font-size: 16px;
margin: 8px 0;
}
p.secondary {
font-size: 0.85rem;
}
a {
color: darkcyan;
text-decoration: none;
}
.header {
display: flex;
justify-content: space-between;
}
.icon {
display: inline-block;
padding: 0 0.5rem 0 0;
width: 1rem;
height: 1rem;
background-position: center;
vertical-align: text-bottom;
}
.icon-phone {
background: url(./icon-phone.svg) no-repeat;
}
.icon-email {
background: url(./icon-email.svg) no-repeat;
}
.icon-telegram {
background: url(./icon-telegram.svg) no-repeat;
}
.icon-github {
background: url(./icon-github.svg) no-repeat;
}
.developer {
margin-top: 0px;
}
.photo {
width: 180px;
height: 180px;
background-image: url(at.jpg);
background-size: 180px;
float: right;
margin-right: 20px;
border-radius: 0.5em;
}
.contacts {
height: auto;
}
.about {
padding-top: 1em;
clear: both;
}
.link-github {
display: inline-block;
padding: .35em .65em;
border-radius: .25rem;
background-color: #ccc;
line-height: 1;
font-size: .75em;
font-weight: 700;
color: black;
text-decoration: none;
text-align: center;
}