-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (73 loc) · 1.24 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
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
background-color: #c5e4e7;
font-family: 'Roboto Condensed', sans-serif;
}
.container {
margin-top: 50px;
width: 800px;
height: 450px;
background-color: #fff;
border-radius: 20px;
display: flex;
}
.wrapper {
padding: 40px;
width: 50%;
}
input {
width: 80%;
border: none;
background: #f3f8fb;
padding: 10px;
margin: 10px 0 20px 0;
border-radius: 2px;
}
input:focus {
outline: none;
}
input::placeholder {
opacity: 0.7;
}
.tips {
display: flex;
margin-bottom: 20px;
flex-wrap: wrap;
}
.tip {
background: #00474b;
color: #a4cdd1;
min-width: 80px;
margin: 5px;
text-align: center;
padding: 10px;
border-radius: 5px;
cursor: pointer;
}
button {
height: 40px;
width: 100%;
background-color: #39CCCC;
color: #fff;
font-size: 16px;
border: none;
border-radius: 5px;
}
.right-wrapper {
background: #00474b;
color: #9dc8c9;
width: 50%;
padding: 30px;
}
.right-wrapper p {
margin-bottom: 20px;
}
span {
font-size: 30px;
}