-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
74 lines (74 loc) · 1.36 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
* {
color: #f2f2f2;
}
html {
background: url('images/doodle-background.webp') center fixed, #000;
background-size: cover;
}
body {
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: 16px;
line-height: 1.6;
}
h1 {
margin: 0;
padding: 0;
}
.title {
text-align: center;
}
.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100vh;
}
.card {
background-color: #1e1e1e;
padding: 50px;
border-radius: 6px;
}
form {
display: flex;
flex-direction: column;
gap: 10px;
}
fieldset {
display: flex;
gap: 10px;
flex-direction: row;
border: none;
padding: 0;
margin: 0;
align-items: flex-end;
flex-flow: flex-start;
}
#countryCode {
font: inherit;
padding: 10px;
flex-basis: 30%;
height: 100%;
}
#phoneNumber {
font: inherit;
flex: 1;
padding: 10px;
border:none;
background-color: #2b2b2b;
border-bottom: #17a8be 2px solid;
}
select {
padding: 10px 12px;
width: 100%;
background-color: #2b2b2b;
border: none;
border-bottom: #17a8be 2px solid;
}
button {
padding: 10px;
background-color: #075E54;
border: none;
border-radius: 5px;
font-weight: bold;
}