-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
105 lines (93 loc) · 1.61 KB
/
Copy pathstyle.css
File metadata and controls
105 lines (93 loc) · 1.61 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Open Sans', sans-serif;
}
:root {
--first-color: #bebbbb;
}
html {
font-size: 62.5%;
background-color: fff;
}
body {
padding: 1rem;
font-size: 1.6rem;
}
h1 {
color: #003844;
text-align: center;
font-size: 6rem;
font-family: Arial;
font-weight: 900;
margin-top: 30px;
}
.container {
margin: 1rem auto;
text-align: center;
display: grid;
grid-template-columns: repeat(4, 1fr);
grid-template-rows: 10vh 20vh 20vh 15vh 10vh;
gap: 1rem;
grid-template-areas:
"header header header header"
"main main main main"
"footer footer footer footer";
}
.header {
grid-area: header;
}
.main {
grid-area: main;
}
.footer {
grid-area: footer;
}
img {
border-radius: 2.5rem;
background: lightgray 50% / cover no-repeat;
width: 90%;
margin: 30px;
}
h2 {
color: #003844;
text-align: center;
font-size: 3rem;
font-family: Arial;
font-weight: bold;
}
a {
text-decoration: none;
}
#login > a {
color: #F8F8F8;
}
#join > a {
color: #119DA4;
}
#login {
box-sizing: content-box;
margin: 30px;
width:300px;
height:50px;
background-color:#119DA4;
font-size:1.5em;
text-align:center;
font-weight:bold;
box-shadow:0px 4px 4px rgba(0,0,0,0.25);
margin-bottom:10px;
border-radius: 10px;
}
#join {
box-sizing: content-box;
margin-top: 10px;
width:300px;
height:50px;
background-color:#F8F8F8;
font-size:1.5em;
text-align:center;
font-weight:bold;
box-shadow:0px 4px 4px rgba(0,0,0,0.25);
border-radius: 10px;
}