-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (86 loc) · 1.62 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
html{
height: 100%;
margin: 0;
max-height: 100vh;
max-width: 100vw;
overflow: hidden;
padding: 0;
width: 100vw;
}
body {
background-color: #fafafe;
color: #373D3F;
margin: 0;
min-height: 100vh;
padding: 0;
}
h1,h2,h3{
font-family: 'Fira Code', 'Courier New', monospace, monospace;
font-weight: 100;
margin: 1vw;
white-space: nowrap;
}
h1{
font-size:calc(10vmin - 2px);
}
h2{
font-size:calc(7vmin - 2px);
}
h3{
font-size:calc(4vmin - 2px);
}
p{
color: #373D3F;
font-family: 'Fira Code','Courier New', monospace, monospace;
font-size: calc(1px + 3vmin);
font-weight: 300;
margin: 0vw;
padding: 0vw;
text-align: center;
white-space: nowrap;
}
a{
-moz-transition: color.5s ease;
-ms-transition: color.5s ease;
-o-transition: color.5s ease;
-webkit-transition: color.5s ease;
color: #373D3F;
font-size: calc(14px + 3.5vmin);
font-weight: 200;
margin: 1vw;
transition: color.5s ease;
white-space: nowrap;
}
a:hover{
-moz-transition: color.5s ease;
-ms-transition: color.5s ease;
-o-transition: color.5s ease;
-webkit-transition: color.5s ease;
color: #c0c0c0;
transition: color.5s ease;
}
i{
list-style: none;
}
.container{
align-items: center;
display: flex;
flex-direction: column;
height: 100vh;
justify-content: center;
margin: 0.3vw;
padding: 0;
}
.social {
margin-top: 2vw;
opacity:0;
transition: 1000ms opacity;
}
::selection {
background: #373D3F;
color: #fafafe;
}
::-moz-selection {
background: #373D3F;
color: #fafafe;
}