-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
107 lines (94 loc) · 1.78 KB
/
style.css
File metadata and controls
107 lines (94 loc) · 1.78 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');
html{
background-color: #1e1e1e;
color: white;
font-family: 'Montserrat';
overflow-x: hidden;
text-align: center;
font-size: larger;
}
.menu{
/* background-color: blue; */
position: absolute;
top: 50px;
right: -200px;
width: 200px;
height: calc(100% - 50px);
/* animation: pop-in 1s forwards; */
text-align: left;
display: grid;
grid-template-columns: auto;
align-content: start;
border-top-left-radius: 10px;
background-color: rgb(75,75,75,0.95);
transition-duration: .5s;
transition-timing-function: ease-in-out;
}
/* .menu-info{
position: relative;
right: -75px;
top: -25px;
display: grid;
} */
.menu-button{
width: 50px;
position: absolute;
right: 0px;
top: 0px;
}
a#link{
font-size: xx-large;
text-decoration: none;
color: white;
transition-duration: .1s;
padding: 0px 10px;
}
a#link:hover{
cursor: pointer;
color: #0484d1;
padding: 0px 20px;
}
.projects{
position: relative;
width: 80%;
left: 10%;
}
a{
padding: 10px;
font-size: x-large;
text-decoration: none;
color: white;
transition-duration: .1s;
}
a:hover{
color: #0484d1;
}
#titleLogo{
width: 500px;
}
#new-game-widget{
width: 552px;
height: 167px;
}
.projects iframe{
width: 552px;
height: 167px;
}
@media only screen and (max-width: 1000px){
#titleLogo{
width: 50%;
}
.projects{
/* display: grid; */
/* grid-template-columns: auto auto; */
position: relative;
width: 80%;
left: 10%;
}
#new-game-widget{
width: calc(75%);
}
.projects iframe{
width: calc(75%);
}
}