-
Notifications
You must be signed in to change notification settings - Fork 1
/
styles.scss
120 lines (105 loc) · 1.93 KB
/
styles.scss
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
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Serif:wght@100;300;400;600&display=swap');
body {
font-family: 'IBM Plex Serif', serif;
font-size: 1rem;
background-color: #F8EDE3;
color: #3A3C3A;
}
h2 {
font-size: 4rem;
font-weight: 300;
color: #3A3C3A;
}
p {
}
hr {
display: block;
margin-top: 1.5rem;
margin-bottom: 1.5rem;
margin-left: auto;
margin-right: auto;
border-style: inset;
border-width: 1px;
}
input {
width: 100%;
height: 3rem;
background-color: #09594E;
border: none;
border-radius: 5px;
-webkit-appearance: none;
font-family: 'IBM Plex Serif', serif;
font-size: 1rem;
color: #F8EDE3;
font-weight: 300;
margin-top: 2rem;
cursor: pointer;
margin-bottom: 2rem;
}
table {
// border: solid 1px #3A3C3A;
border: solid 3px #FDF8F4;
border-collapse: collapse;
border-spacing: 0;
font-family: 'IBM Plex Serif', serif;
font-size: 0.9rem;
margin-bottom: 1rem;
width: 100%;
word-break:break-word;
}
th {
// background-color: #CB9972;
// border-bottom: solid 2px #3A3C3A;
color: #3A3C3A;
padding: 10px;
margin-bottom: 10px;
text-align: left;
}
tbody td {
// border: solid 1px #3A3C3A;
border-bottom: solid 5px #FDF8F4;
color: #333;
padding: 10px;
padding-top: 15px;
padding-bottom: 15px;
word-break:break-word;
background-color: white;
}
footer {
padding: 2rem;
background-color: white;
p {
font-size: 0.9rem;
}
}
i {
line-height: 1.6rem;
}
@keyframes slideInFromLeft {
0% {
opacity: 0;
transform: translateY(-30px);
}
100% {
opacity: 1;
transform: translateY(0);
}
}
.comboboxNationality {
padding-right: 1rem;
}
.header-image {
margin-top: 1rem;
height: 40vh;
}
.container {
animation: 0.8s ease-out 0s 1 slideInFromLeft;
}
.smallLink {
font-size: 0.9rem;
}
#returnTitle {
background-color: #FDF8F4;
display: none;
padding-bottom: 2rem;
}