-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
81 lines (71 loc) · 1.29 KB
/
style.css
File metadata and controls
81 lines (71 loc) · 1.29 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
body {
background-image: linear-gradient(150deg, rgba(47,80,109,1) 0%, #3b6b96 69%, #4677a1 100%);
color: white;
font-size: 1.05em;
text-align: center;
}
img {
display: block;
margin-left: auto;
margin-right: auto;
height: 350px;
}
select {
font-size: 1rem;
padding: 0.4em 1em;
border-width: 0.1em;
border-radius: 50px;
border-color: #58c29b;
margin-bottom: 0.2em;
color:white;
background-color: #3f7890;
text-align: center;
}
.button {
background-color: #58c29b; /* Green */
border: none;
color: white;
padding: 0.6em 1.1em;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 1.2em;
border-radius: 4em 1.5em;
}
div.fixed {
position: fixed;
bottom: 1em;
left: 0.5em;
}
div.fixedright {
position: fixed;
bottom: 1.5em;
right: 1.5em;
font-size: 0.6em;
}
.input {
font-size: 1em;
color: rgb(26, 26, 26);
border-radius: 50px;
border-color: white;
background-color: rgb(216, 216, 216);
text-align: center;
padding: 0.4em 0em;
}
@media only screen and (max-width: 1100px) {
body {
font-size: 2.2em;
}
.button {
font-size: 1.8em;
}
.input {
font-size: 1.4em;
}
img {
height: 750px;
}
select {
font-size: 2.7rem;
}
}