-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
93 lines (80 loc) · 1.58 KB
/
styles.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
/* Styling */
html,
body {
height: 100%;
margin: 0;
padding: 0;
overflow-y: auto;
background-image: -webkit-linear-gradient(#D4C8E3 0%, #E4EEEF 100%);
background-image: -o-linear-gradient(#D4C8E3 0%, #E4EEEF 100%);
background-image: linear-gradient(#D4C8E3 0%, #E4EEEF 100%);
text-align: center;
font-family: 'Nunito Sans', sans-serif;
}
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
}
h1 {
text-align: center;
font-size: 3rem;
padding-top: 3rem;
color: black;
font-weight: 800;
}
#searchForm {
width: 50%;
margin-left: auto;
margin-right: auto;
margin-top: 2rem;
align-items: center;
text-align: center;
}
form p {
text-align: center;
margin-bottom: 0.2rem;
color: black;
}
form button {
align-self: center;
margin-top: 1rem;
margin-bottom: 1rem;
border-radius: 0%;
background-color: white;
border: none;
}
.input {
border-radius: 0%;
}
.card {
width: 50%;
margin: 0 auto;
padding: 0;
background-color: white;
}
.title.is-4 {
margin-bottom: 2rem !important;
}
.subtitle.is-6 {
margin-bottom: 2rem;
color: #1a52ad;
}
.content {
margin-top: 2rem;
}
/* Overriding Bulma's @media queries */
@media screen and (min-width: 1408px) {
.container:not(.is-max-desktop):not(.is-max-widescreen) {
max-width: none;
}
}
@media screen and (min-width: 1216px) {
.container:not(.is-max-desktop) {
max-width: none;
}
}
@media screen and (min-width: 1024px) {
.container {
max-width: none;
}
}