forked from shrynshigupta06/Sample-Pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage1.css
More file actions
59 lines (58 loc) · 884 Bytes
/
Copy pathpage1.css
File metadata and controls
59 lines (58 loc) · 884 Bytes
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
body{
padding: 0;
margin: 0;
}
.container{
width: 100%;
height: 100%;
display: flex;
}
.leftdiv{
width: 70%;
float: left;
display: block;
}
.leftdiv img{
width: 100%;
}
.rightdiv{
width: 30%;
float: right;
display: block;
}
.innerdiv{
margin-top: 110px;
margin-left: 20px;
margin-right: 20px;
padding: 10px;
font-family: sans-serif;
vertical-align: middle
}
input{
padding: 7px;
margin-top: 15px;
margin-bottom: 20px;
background-color: #E5E8E8;
width: 100%;
border-radius: 5px;
}
button{
padding: 15px;
width: 150px;
margin-top: 20px;
margin-bottom: 20px;
font-size: 20px;
border-radius: 10px;
border: 2px solid #27C7EE;
color: #27C7EE;
background-color: white;
}
a{
color: black;
}
a.hover{
color: skyblue;
}
a.hover{
color: purple;
}