forked from JOELIHNO/application-de-met-o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
70 lines (66 loc) · 1.23 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
html,body{
min-height : 100%;
}
body{
margin: 0;
background-image:
linear-gradient(to bottom ,skyblue,white);
}
#container{
width : 60%;
min-height: 400px;
margin: 0 auto;
margin-top: 50px;
background-color: #FFFFFF;
border-radius: 10px;
box-shadow: 0px 0px 10px black;
}
#one{
background-color: #FBFBFF;
position: relative;
border-bottom: 1px solid #c0c9d1;
border-top-left-radius: 10px;
border-top-right-radius: 10px;
}
#one h1{
text-align: center;
color: orange;
font-family: Helvetica;
padding-top: 20px;
font-style: oblique;
}
form{
text-align: center;
margin-bottom: 30px;
}
input[type=text]{
width:70%;
margin: 50px;
margin-top: 40px;
padding: 3px 50px;
border: 1px solid #dCdCdf;
background-color: #ECECEF;
font-size: 20px;
text-align: center;
}
button{
border: 0;
border-radius: 35px/35px;
background-color: deepskyblue;
color: white;
font-family: Sans;
font-size: 22px;
padding: 12px;
position: absolute;
top: 108px;
right: 50px;
cursor :pointer;
}
button:hover{
background-color: dodgerblue;
}
p{
font-size: 22px;
color: orangered;
margin-left: 50px;
}