-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
80 lines (62 loc) · 1010 Bytes
/
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
#background {
width: 100vw;
height: 100vh;
background: rgba(255,255,255,0);
font-size: 13vmin;
font-family: 'Open Sans';
text-align: center;
}
body {
margin: 0;
overflow-x: hidden;
}
hr {
border: 1px solid black;
width: 80%;
}
#img {
width: 35vw;
}
a {
text-decoration: none;
color: black;
}
#desc {
font-family: 'Open Sans';
text-align: center;
font-size: 4vmin;
padding: 20px;
}
#links {
display: flex;
flex-wrap: wrap;
width: 100vw;
}
.link {
height: 100vh;
width: 50vw;
opacity: 60%;
transition: opacity 200ms 50ms ease-in-out;
position: relative;
}
.link:hover {
opacity: 100%;
}
.link-text {
font-size: 5vmin;
font-family: 'Secular One';
color: inherit;
display: inline-block;
width: 100%;
position: absolute;
top: 50%;
text-align: center;
}
#one {
background: #cfcfcf;
color: #303030;
}
#two {
background: #303030;
color: #cfcfcf;
}