-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
96 lines (90 loc) · 2.3 KB
/
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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
@font-face {
font-family: LeagueSpartan;
src: url("LeagueSpartan.otf") format("opentype"); }
@font-face {
font-family: CooperHewitt;
src: url("CooperHewitt.otf") format("opentype"); }
* {
font-family: 'Open Sans', sans-serif; }
html, body {
margin: 0;
padding: 0;
background-color: #F3F2F4; }
#header {
width: 100%;
height: 500px;
display: flex;
justify-content: center;
align-items: center;
background: #372d43;
background: linear-gradient(90deg, #372d43 0%, #084758 100%); }
#header-content {
width: 600px; }
#header-content .logo {
width: 100%;
color: white;
font-size: 3em;
text-align: center;
margin-bottom: 20px;
text-transform: uppercase; }
#header-content .logo div {
font-family: LeagueSpartan, sans-serif;
margin: 10px 0; }
#header-content .logo .sub {
font-family: CooperHewitt, sans-serif;
font-size: 0.8em; }
#header-content .buttons {
margin-top: 20px;
text-align: center; }
#header-content .buttons button {
padding: 10px 20px;
margin: 10px;
background-color: transparent;
color: white;
border: 2px solid white;
border-radius: 10px;
font-size: 1.2em;
cursor: pointer;
transition: background-color 0.15s linear, color 0.15s linear; }
#header-content .buttons button:hover #header-content .buttons button:not(:hover) {
background-color: white;
color: #372d43; }
#header-content .buttons button:disabled {
color: grey;
border: 2px solid grey; }
#main {
margin: 0 auto;
max-width: 900px; }
#main p {
font-size: 1.3em; }
#main ul, #main li {
font-size: 1.1em; }
#main small {
font-size: 1em; }
#main hr {
margin: 40px 0;
height: 1px;
background-color: #c0bbc5;
border: none; }
#main .logos img {
vertical-align: middle;
width: 45%;
padding: 20px; }
#main #taken-place-box {
margin-top: 20px;
background-color: #b6a9c6;
padding: 20px;
border: 2px solid black; }
@media (max-width: 600px) {
#header {
height: 100%;
padding: 20px 0; }
#header #header-content img {
width: 100%; } }
@media (max-width: 900px) {
#main {
padding: 0 20px; }
#main .logos img {
width: 100%;
padding: 20px 0; } }
/*# sourceMappingURL=style.css.map */