forked from itsvinayak/website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
84 lines (73 loc) · 1.33 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
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;
}
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;
transition: transform 0.3s linear;
}
div.grid-item:hover{
transform: scale(1.3);
}
.language-name:hover{
border-bottom: 3px solid #1b6568;
transition-duration: 100ms;
}