-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
138 lines (127 loc) · 2.43 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
*{
padding: 0;
margin: 0;
font-family: sans-serif;
}
.container{
background-color: black;
min-height: 100vh;
width: 100%;
overflow: hidden;
position: relative;
}
header{
display:flex;
justify-content: space-between;
width: 80%;
margin: auto;
margin-top: 10px;
}
.logo{
width: 40px;
}
ul li{
display: inline-block;
list-style: none;
}
ul li a{
text-decoration: none ;
color: #fff;
margin: 0 10px;
}
.sng{
text-decoration: none;
background: #fff;
color: #000;
padding: 8px 15px;
border-radius: 20px;
}
.content{
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
margin: auto;
}
.content .text{
width: 40%;
color: #fff;
}
.content .text h2{
font-size: 40px;
text-transform: uppercase;
}
.content .text p {
font-size: 18px;
margin: 20px 0 ;
}
.content .text a {
text-decoration: none;
background: #fff;
color: #000;
padding: 8px 15px;
border-radius: 20px;
}
.content .image {
width: 30%;
}
.content .image img{
width: 180px;
}
.icons {
position: absolute;
bottom: 20px;
left: 50%;
transform: translate(-50%);
}
.icons img{
width: 40px ;
transition: 0.5s;
cursor: pointer;
}
.icons img:hover{
transform: scale(1.2);
}
/* styling frame for */
#form {
width: 300px;
margin: 20vh auto 0 auto;
padding: 20px;
background-color: whitesmoke;
border-radius: 4px;
font-size: 12px;
}
#form h1 {
color: #0f2027;
text-align: center;
}
#form button {
padding: 10px;
margin-top: 10px;
width: 100%;
color: white;
background-color: #1e1e1e;
border: none;
border-radius: 4px;
}
.input-control {
display: flex;
flex-direction: column;
}
.input-control input {
border: 2px solid #f0f0f0;
border-radius: 4px;
display: block;
font-size: 12px;
padding: 10px;
width: 100%;
}
.input-control input:focus {
outline: 0;
}
.input-control.success input {
border-color: #09c372;
}
.input-control.error input {
border-color: #ff3860;
}