-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
134 lines (116 loc) · 2.12 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
@import url('https://fonts.googleapis.com/css2?family=Domine:wght@700&family=Readex+Pro:wght@300&display=swap');
body {
background-color: #ebe7e5;
margin: 0;
padding: 0;
text-align: center;
font-size: 1.5rem;
/* background-image: url("banner.png");
background-repeat: no-repeat;
background-size: cover;
background-attachment: fixed;
background-position-x: center; */
}
h2, h3, h4 {
font-family: 'Domine', serif;
color: #d6a53e;
}
#nav {
background-color: #7c251d;
display: flex;
color: white;
font-size: 1.2rem;
margin: 0;
font-family: 'Readex Pro', sans-serif;
}
.nav-fixed {
position: fixed;
top: 0;
}
#nav > div {
width: 25%;
padding: 0.2rem 1rem;
}
.desk {
display: block;
}
.mob {
display: none;
}
.container {
padding: 0 20vw;
}
.container > div {
border-radius: 1.5rem;
padding: 1rem;
background-color: rgba(255,255,255,0.6);
font-family: 'Readex Pro', sans-serif;
margin-bottom: 1vw;
}
.per {
font-size: 1rem;
}
img {
width: 100%;
}
table {
text-align: left;
margin: auto;
}
td {
padding: 1vw;
}
tr {
margin: 1vw;
}
td:last-child {
text-align: right;
color: rgba(0,0,0,0.6);
}
.register {
display: flex;
padding: 1vw 5vw;
}
.register > div {
background-color: #7c251d;
width: 50%;
color: #d6a53e;
border-radius: 2rem;
font-size: 1.3rem;
padding: 0.5vw 1vw;
margin: 1vw 4vw;
}
a {
color: inherit;
text-decoration: none;
}
@media screen and (max-width:1000px) {
body {
font-size: 1rem;
}
.container {
padding: 0;
margin: 1rem;
margin-top: 0;
}
.desk {
display: none;
}
.mob {
display: block;
}
.register {
flex-direction: column;
align-items: center;
}
.register > div {
font-size: 0.8rem;
padding: 2vw;
}
.per {
font-size: 0.8rem;
}
#nav {
display: none;
}
}