-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
83 lines (75 loc) · 1.33 KB
/
style.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
@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@300&display=swap');
* {
padding: 0;
margin: 0;
}
body {
background-color: #f7cf3c;
font-family: 'Archivo', sans-serif;
color: #313131;
}
form {
background-color: #f7f7f7;
border-style: solid;
border-width: 10px;
border-color: #313131;
display: flex;
flex-direction: column;
margin: 30vh auto;
width: 30vw;
padding: 20px;
}
h1 {
margin-bottom: 20px;
}
label {
color: #00548e;
font-size: 15pt;
margin-bottom: 3px;
}
input {
border-width: 3px;
border-style: solid;
border-color: #00548e;
border-radius: 4px;
width: 90%;
height: 30px;
margin-bottom: 30px;
}
button {
background-color: #00548e;
color: #fff;
font-size: 15pt;
border: none;
border-radius: 4px;
cursor: pointer;
outline: none;
width: 30%;
margin: 0 auto;
padding: 10px 15px;
}
@media (max-width: 700px) {
form {
background-color: #f7f7f7;
border-style: solid;
border-width: 10px;
border-color: #313131;
display: flex;
flex-direction: column;
margin: 20vh auto;
width: 70vw;
padding: 20px;
}
button {
background-color: #00548e;
color: #fff;
font-size: 15pt;
border: none;
border-radius: 4px;
cursor: pointer;
outline: none;
width: 50%;
margin: 0 auto;
padding: 10px 15px;
}
}