This repository was archived by the owner on Mar 1, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 129
Expand file tree
/
Copy pathstyle.css
More file actions
138 lines (120 loc) · 1.87 KB
/
style.css
File metadata and controls
138 lines (120 loc) · 1.87 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
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
130
131
132
133
134
135
136
137
138
body {
font-family: Montserrat, Helvetica Neue, sans-serif;
line-height: 2em;
box-sizing: border-box;
color: #333333b3;
/* background: linear-gradient(to bottom right, #ffded1 0%,#ffded1 50%,#ffc5af 50%,#ffc5af 100%); */
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}
html, body {
height: 100%;
margin: 0;
}
.fade-in {
animation: fadeIn ease 2s;
-webkit-animation: fadeIn ease 2s;
-moz-animation: fadeIn ease 2s;
-o-animation: fadeIn ease 2s;
-ms-animation: fadeIn ease 2s;
}
@keyframes fadeIn{
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-moz-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-webkit-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-o-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
@-ms-keyframes fadeIn {
0% {
opacity:0;
}
100% {
opacity:1;
}
}
.style p {
color:#000;
font-size:25px;
}
a {
text-decoration: none;
color: #1b6568;
transition-duration: 100ms;
}
.github {
float: right;
fill: #445978;
padding-top: 5px;
}
p {
font-family: 'Roboto';
font-weight: 300;
font-size: 23px;
text-align: center;
}
.name {
font-size: 32px;
text-transform: uppercase;
display: inline;
}
.container {
margin: 0 auto;
width: 700px;
padding: 50px 0;
}
.container header {
padding: 12px;
line-height: normal;
text-align: center;
border: 4px solid #445978;
color: #445978;
}
main {
padding: 1em;
}
main::after {
content: '\2A55\2A55\2A55\2A55';
position: relative;
top: 40px;
left: 300px;
color: #445978;
font-size: 44px;
}
div.grid {
text-align: center;
display: grid;
grid-template-columns: 1fr 1fr 1fr 1fr;
}
div.grid-item {
margin-bottom: 20px;
margin-top: 10px;
}
.language-name:hover{
border-bottom: 3px solid #1b6568;
transition-duration: 100ms;
}