-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
100 lines (95 loc) · 1.73 KB
/
styles.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
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body {
margin: 0;
padding: 0;
font-family: "Open Sans", Arial, sans-serif;
font-optical-sizing: auto;
font-variation-settings: "wdth" 100;
font-size: 14px;
background-color: #46b5d3;
color: #ffffff;
display: flex;
flex-direction: column;
min-height: 100vh;
direction: rtl;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex-grow: 1;
padding: 20px;
}
.app-image {
max-width: 80%;
height: auto;
margin-bottom: 30px;
}
.phone {
box-sizing: border-box;
background-color: #fff;
padding: 10px 20px;
border-radius: 40px;
border: 10px solid #000;
width: 300px;
height: 600px;
box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
margin-bottom: 20px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
color: #3394af;
text-align: center;
}
.phone h3 {
color: #1c748d;
font-weight: bold;
font-size: 16px;
margin: 0;
}
.phone img {
width: 200px;
height: 83px;
}
.phone a {
margin: 10px 0 5px;
pointer-events: none;
}
.form {
display: flex;
flex-direction: column;
gap: 8px;
}
.input-container {
display: flex;
flex-direction: column;
gap: 2px;
}
.input {
max-width: 300px;
padding: 8px 4px;
border-radius: 4px;
border-color: #206072;
background-color: #edf8fc;
}
.button {
max-width: 120px;
padding: 8px 4px;
border-radius: 4px;
border-width: 2px;
border-style: solid;
border-color: #edf8fc;
color: #edf8fc;
background-color: #206072;
cursor: pointer;
}
footer {
padding: 10px;
text-align: center;
font-size: 0.9em;
}
footer a {
color: #ffffff;
}