-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.css
More file actions
105 lines (86 loc) · 1.33 KB
/
Copy pathstyles.css
File metadata and controls
105 lines (86 loc) · 1.33 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
body{
background-color: #EFF1F2;
}
h1{
font-size: 3em;
color: #3D4C58;
font-family: 'Lora', serif;
margin: 0;
margin-top: 10vh;
}
h2{
font-weight: normal;
color: #536878;
margin-block-start: 0.2em;
}
button {
background-color: #3D4C58; /* Green */
color: white;
padding: 1vh 2vw;
}
input {
line-height: 4vh;
}
input, button{
display: block;
margin: 0 auto;
border: none;
margin-top: 2vh;
margin-bottom: 2vh;
width: 20vw;
min-width: 20ch;
}
hr {
border: 0;
margin: 1px 3vw;
}
.row:nth-child(odd) div hr{
border-top: 2px solid #CE9944;
}
.row:nth-child(even) div hr{
border-top: 2px solid #62AD90;
}
.list-label{
white-space: normal;
font-weight: bold;
margin-top: 2vh;
}
.row{
white-space: nowrap;
border: 0;
display: flex;
flex-direction: row;
flex-wrap: wrap;
width: 100%;
align-items: center;
}
.col{
display: flex;
flex-direction: column;
flex-basis: 100%;
flex: 1;
}
.left{
margin-left: 25vw;
}
.right{
margin-right: 25vw;
}
#mid{
flex-grow:3;
}
#notice{
color: #6D746E;
}
#main{
margin-bottom: 10vh;
margin-top: 4vh;
font-size: 120%
}
[v-cloak] {
display: none;
}
* {
text-align: center;
font-family: 'Source Sans Pro', sans-serif;
}