-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
85 lines (73 loc) · 1.06 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
* {
font-family:'Poppins', sans-serif;
margin: 10px 5px;
max-width: 100%;
align-items: center;
text-align: center;
}
body {
margin: auto 15%;
}
/* text */
h1,
h2,
p,
label {
color: #5F9DF7;
font-size: 20px;
}
h1 {
margin-top: 5%;
font-size: 30px;
}
a {
color: #075FDF;
}
.footer {
font-size: small;
}
/* form */
select {
background-color: #9EC6FF;
color: #fff;
box-shadow: none;
overflow: hidden;
border: none;
border-radius: 50px;
padding: 5px 10px;
margin: 10px;
width: 250px;
cursor: pointer;
max-width: 200px;
}
#button {
background-color: #5F9DF7;
color: #fff;
border: none;
border-radius: 50px;
padding: 10px 20px;
font-size: large;
flex-wrap: wrap;
width: auto;
cursor: pointer;
}
/* for cellphones */
@media (max-width: 600px) {
body {
margin: auto 5px;
}
select,
label {
font-size: 20px;
}
#button {
font-size: 25px;
}
#description {
font-size: 15px;
margin: auto 30px;
}
h1 {
margin-top: 15%;
}
}