This repository was archived by the owner on Mar 23, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
115 lines (95 loc) · 1.85 KB
/
style.css
File metadata and controls
115 lines (95 loc) · 1.85 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
@font-face {
font-family: "hydrophilia-iced";
src: url("fonts/Hydrophilia_Iced.ttf");
}
html {
height: 100%;
font-size:12px;
}
body {
background-color: #33CCFF;
background-image: url("images/mockups.png");
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;
font-family: "hydrophilia-iced", sans-serif;
}
.logo {
width: 100%;
text-align: center;
}
.welcome {
width: 100%;
position: relative;
text-align: center;
color: rgba(238, 238, 238, 1);
text-shadow: -3px 3px 0px rgba(39, 33, 60, 1);
font-size: 1.5em;
}
.links {
width: 100%;
text-align: center;
font-size: 1.25em;
margin-top: 3rem;
}
.links-two {
width: 100%;
text-align: center;
font-size: 1.25em;
margin-top: 4rem;
}
#sitting {
display:none;
}
#KHE {
height: 180px;
width: 360px;
text-align: center;
}
@media screen and (min-width: 768px) {
.logo {
width: 50%;
top: 0;
left: 0;
text-align: left;
}
.welcome {
width: 50%;
position: absolute;
top: 0;
right: 0;
margin-right: 25px;
text-shadow: -4px 4px 0px rgba(39, 33, 60, 1);
text-align: right;
font-size: 2.75em;
}
.links {
width: 100%;
margin-top: 10rem;
text-align: center;
font-size: 2.25em;
}
.links-two {
width: 100%;
margin-top: 5rem;
text-align: center;
font-size: 2.25em;
}
#KHE {
height: 220px;
width: 400px;
}
#sitting {
display: inline;
position: fixed;
bottom: 0;
z-index: -9999;
}
}
.button {
margin: 30px;
padding: 15px;
border: 2px solid black;
color: rgba(238, 238, 238, 1);
background-color: rgba(87, 70, 123, 1);
}