-
Notifications
You must be signed in to change notification settings - Fork 0
/
css.css
125 lines (104 loc) · 2.26 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
119
120
121
122
123
124
125
* {
margin: 0px;
padding: 0px;
}
html {
position: relative;
min-height:100%;
overflow-y: scroll;
scrollbar-width: none; /* Firefox */
-ms-overflow-style: none; /* Internet Explorer 10+ */
/*background: linear-gradient(180deg, rgba(17,205,125,1) 0%, rgba(181,240,109,1) 37%, rgba(221,254,103,1) 55%, rgba(245,254,143,1) 82%, rgba(253,254,238,1) 100%); */
}
body {
background: #ededf2;
background: url(assets/bg.png);
background-repeat: no-repeat;
background-size: cover;
background-position: center center;
background-attachment: fixed;
margin: 34px 13px;
font-family: DMSans, sans-serif;
font-size: 13pt;
font-style: normal;
line-height: 150%;
font-variant-numeric: oldstyle-nums;
}
.content {
margin: 0px auto;
max-width: 720px;
margin-bottom: 89px; /* 34px + img height 55 */
background: white;
padding: 55px;
border-radius: 21px;
box-shadow: 0 16px 24px 0 rgba(0,0,0,.1);
transition: .5s;
}
a {
color: black;
text-decoration: none;
text-transform: lowercase;
}
a:visited {
color: black;
}
.header-wrap {
margin: 0px 0px 34px 0px;
}
h1 {
color: #111;
font-family: DMMono, sans-serif;
font-size: 34pt;
font-weight: bold;
text-transform: uppercase;
line-height: 130%;
}
b {
font-family: DMSans, sans-serif;
font-weight: bold;
}
.keywords-area {
line-height: 100%;
margin-top: 55px;
opacity: 0;
transition: 1s;
}
.kw {
font-size: 12pt;
display: inline-block;
margin: 3px 6px 3px 0px;
padding: 5px 13px;
background: #ededf2;
border-radius: 5px;
text-transform: lowercase;
}
.kw:hover {
background: #e3e3ea;
cursor: pointer;
}
#kw-section {
position: relative;
display: inline-block;
font-family: DMMono;
font-size: 12pt;
font-weight: bold;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 13px;
text-decoration: underline 3px #0046ff;
}
/* ----- footer ----- */
footer {
position: absolute;
bottom: 0;
left: 50%;
}
/* here i try to center my signature
i don't know why but it works like a charm */
#signature {
width: 55px;
margin: 21px;
display: block;
position: relative;
left: -50%;
}