-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
118 lines (118 loc) · 2.15 KB
/
style.css
File metadata and controls
118 lines (118 loc) · 2.15 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
html, body {
font-family: Arial, Helvetica, sans-serif;
color: white;
margin: 0;
overflow-y: hidden;
overflow-x: hidden;
}
.scrollEnabled {
overflow-y: scroll;
}
header {
margin: 8px;
padding: 8px;
width: 100%;
position: absolute;
top: 0;
left: 0;
text-align: left;
}
header, header .logo {
height: 15vh;
border-radius: 5px;
}
header .logo {
width: 25%;
}
header .options {
height: 100px;
width: 100px;
float: right;
cursor: pointer;
}
.reponsive-space {
height: 100px;
width: 99%;
}
.website {
width: 54%;
background: white;
border-radius: 8px;
color: black;
text-align: left;
float: left;
}
.website, .website-potrait {
margin-bottom: 15px;
}
.website img {
height: 30vh;
width: 100%;
border-radius: 8px;
background: linear-gradient(transparent, rgba(235, 154, 204, 0.699));
}
.website-potrait {
width: 44%;
background: white;
border-radius: 8px;
color: black;
text-align: left;
float: right;
}
.website-potrait img {
height: 30vh;
width: 100%;
border-radius: 8px;
background: linear-gradient(transparent, rgba(235, 154, 204, 0.699));
}
.intro {
height: 100vh;
width: 100%;
position: fixed;
top: 0;
left: 0;
z-index: 10;
justify-content: center;
align-items: center;
display: flex;
transition: 2s ease-in-out;
}
.intro img {
background: white;
border-radius: 8px;
height: 100px;
width: 300px;
}
.funjunkWelcome {
padding: 8px;
}
.go {
background: rgb(36, 146, 36);
color: white;
font-weight: 200;
border-radius: 3px;
margin: 3px;
padding: 3px;
text-decoration: none;
cursor: default;
}
.menu {
background: black;
color: white;
height: 100vh;
width: 100%;
z-index: 1;
transition: 0.3s ease-in-out;
overflow-y: scroll;
overflow-x: hidden;
}
.menu a {
color: white;
}
.menu .close {
position: absolute;
top: 15px;
right: 15px;
font-size: 2em;
cursor: pointer;
}