-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhome.css
97 lines (86 loc) · 1.44 KB
/
home.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
* {
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;
}
body {
background: #004643;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
width: 100vw;
}
.home {
width: 430px;
display: flex;
flex-direction: column;
align-items: center;
}
.circle {
background-color: #fff;
margin-left: auto;
margin-right: auto;
width: 160px;
height: 160px;
border-radius: 50%;
color: #004643;
}
.circle h2 {
display: flex;
justify-content: center;
margin-top: 48px;
font-size: 40px;
font-weight: 600;
}
p {
color: #f8c660;
font-family: "Baloo 2", cursive;
font-size: 20px;
font-weight: 300;
line-height: 32.04px;
text-align: center;
margin-left: 30px;
margin-top: -12px;
}
.name {
margin-top: 120px;
width: 100%;
padding: 0 23px;
}
form {
margin: auto;
}
label {
display: block;
margin-bottom: 10px;
font-weight: bold;
font-size: 16px;
color: #eeeff2;
}
.name input[type="text"] {
height: 53px;
width: 100%;
border: 1px solid #eeeff2;
border-radius: 20px;
font-size: 20px;
background-color: transparent;
color: #fff;
padding: 4px 10px;
box-sizing: border-box;
}
.name input[type="text"]::placeholder {
color: #eeeff2;
font-weight: 100;
font-size: 15px;
}
button {
width: 100%;
height: 59px;
border-radius: 20px;
margin-top: 200px;
background-color: #f8c660;
color: #fff;
font-size: 24px;
font-family: "Baloo 2", cursive;
}