forked from pranjay-poddar/Dev-Geeks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
86 lines (60 loc) · 1.1 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
body{
background-color: #FDB9FC;
background-image: url("https://cdn.wallpapersafari.com/41/41/o9Lnfa.jpg");
background-size: cover;
}
/* header section */
.container{
text-align: center;
}
h1{
color: #5871ff;
font-size: 3rem;
font-family: 'Playfair Display', serif;
font-weight: bold;
}
h2{
color: #FF5C58;
font-size: 3rem;
font-family: 'Playfair Display', serif;
}
.icon{
color: #ff0000;
}
/* form section */
.formInput{
text-align: center;
/* margin-top: 5rem; */
padding: 5% 16%;
}
input{
border: 2px solid grey;
border-radius: 6px;
font-size: 1.5rem;
margin-left: 2rem;
color: #6D9886;
padding: 10px 60px;
}
input:focus{
background-color: lightblue;
}
/* button section */
.buttonSection{
text-align: center;
}
button{
font-size: 1.2rem;
border: 2px solid gainsboro;
border-radius: 7px;
cursor: pointer;
color: #fff;
background-color: indianred;
padding: 10px 60px;
}
button:hover{
background-color: #FFB085;
}
h3{
font-size: 6rem;
color: indianred;
}