-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsoon.css
More file actions
106 lines (100 loc) · 1.59 KB
/
Copy pathsoon.css
File metadata and controls
106 lines (100 loc) · 1.59 KB
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
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
}
body{
background-image: url('https://i.ytimg.com/vi/9DfL6B6Vpus/maxresdefault.jpg');
background-repeat: no-repeat;
background-size: cover;
}
header{
display: flex;
justify-content: space-between;
align-items: center;
margin: 30px;
margin-right: 120px;
margin-left: 120px;
}
.side-image{
height: 200%;
}
ul{
display: flex;
list-style-type: none;
}
a{
text-decoration: none;
margin: 20px;
color: white;
font-size: 15px;
/*font-weight: bold;*/
font-family: 'Open Sans', sans-serif;
}
h2{
color: purple;
font-size: 30px;
font-weight: bold;
}
button{
padding: 10px;
border: 0px solid;
border-radius: 20px;
background-color: purple;
}
#Reg{
color: white;
font-size: 17px;
font-weight: bold;
}
main{
margin: 25px;
}
.page-text{
padding: 70px 0px 0px 50px;
}
h1{
color: purple;
text-align: center;
font-size: 55px;
font-weight: bold;
}
p{
padding-top: 20px;
text-align: center;
font-size: 15px;
font-weight: bold;
}
.mail-text{
padding: 70px 0px 0px 50px;
}
h3{
color: purple;
text-align: center;
font-size: 20px;
font-weight: bold;
}
.mail-text div{
padding-left: 470px;
padding-top: 30px;
}
img{
width: 30px;
}
input{
position: relative;
padding: 12px;
border: 1px solid purple;
border-radius: 5px 0px 0px 5px;
padding-left: 30px
}
#btn{
position: absolute;
padding: 12px;
padding-top: 14px;
padding-right: 40px;
background-color: purple;
color: white;
border: 0px solid;
border-radius: 0px 5px 5px 0px;
}