-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
110 lines (97 loc) · 1.91 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
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
* {
box-sizing: border-box;
}
html,
body,
.wrapper {
height: 100%;
}
@keyframes rotate {
100% {
background-position: 15% 50%;
}
}
body {
display: grid;
place-items: center;
margin: 0;
padding: 0 24px;
background-image: url("background3.jpg");
background-repeat: no-repeat;
background-size: cover;
font-family: "Euclid Circular A";
color: #000;
animation: rotate 6s infinite alternate linear;
}
@media (width >= 500px) {
body {
padding: 0;
}
}
.card {
position: relative;
z-index: 3;
width: 100%;
margin: 0 20px;
padding: 70px 30px 44px;
border-radius: 1.25rem;
background: #fff;
text-align: center;
}
@media (width >= 500px) {
.card {
margin: 0;
width: 400px;
}
}
.card > h2 {
font-size: 36px;
font-weight: 600;
margin: 0 0 12px;
}
.card > h3 {
color: rgba(0, 0, 0, 0.38);
margin: 0 0 30px;
font-weight: 500;
font-size: 1rem;
}
.detail-form {
width: 100%;
margin: 0;
display: grid;
gap: 16px;
}
.detail-form > input,
.detail-form > button {
width: 100%;
height: 56px;
}
.detail-form > input {
border: 2px solid #ebebeb;
font-family: inherit;
font-size: 16px;
padding: 0 16px;
}
.detail-form > button {
cursor: pointer;
width: 100%;
height: 56px;
padding: 0 16px;
border-radius: 0.5rem;
background: #216ce7;
color: #f9f9f9;
border: 0;
font-family: inherit;
font-size: 1rem;
font-weight: 600;
text-align: center;
letter-spacing: 2px;
transition: all 0.375s;
}
.detail-form > a {
color: #216ce7;
font-size: 1rem;
text-align: left;
text-decoration: none;
margin-bottom: 6px;
}