-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
77 lines (66 loc) · 1.16 KB
/
style.css
File metadata and controls
77 lines (66 loc) · 1.16 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
@import url('https://fonts.googleapis.com/css?family=Questrial');
* {
margin: 0;
font-family: Questrial;
-webkit-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
}
header {
position: sticky;
left: 0;
right: 0;
top: 0;
z-index: 999;
background: white;
box-shadow: 0 0 30px #999;
}
#headerLogo {
width: 100px;
height: 100px;
margin: 10px;
}
#projects {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(400px, 0.5fr));
grid-gap: 20px;
margin: 20px;
}
.project {
color: black;
background-color: white;
border: 2px solid gray;
border-radius: 15px;
transition: 0.1s;
height: 300px;
box-sizing: border-box;
padding: 15px;
box-shadow: 0 0 0 gray;
}
.project:hover {
transform: translate(0, -2px);
box-shadow: 0 0 3px gray;
}
.project:active {
transform: translate(0, 2px);
background-color: #eee;
}
hr {
border: none;
border-top: 1px double #aaa;
margin-top: 15px;
margin-bottom: 20px;
}
.languageOption {
margin: 20px;
}
input, label {
cursor: pointer;
}
input {
transform: scale(2.5);
margin-left: 10px;
margin-right: 5px;
vertical-align: middle;
}