-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
61 lines (61 loc) · 819 Bytes
/
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
body
{
font-family : roboto;
background: grey;
}
.inscription
{
height: 65vh;
margin : 2em 10%;
background: #d0ff01;
padding: .5em;
border-radius : 5px;
box-shadow : 1px 1px 5px #9501cfc2
}
.inscription form, .inscription .message
{
text-align: center;
width: 100%;
}
.clearfix:after
{
content: ".";
display: block;
clear: both;
visibility: hidden;
line-height: 0;
height: 0;
}
.clearfix
{
display: block;
}
input
{
width: 50%;
height: 3em;
}
button
{
width: 50%;
height: 3em;
background-color: hotpink;
border: 1px solid orangered;
color: blue;
}
html[xmlns] .clearfix
{
display: block;
}
* html .clearfix
{
height: 1%;
}
html
{
box-sizing : border-box
}
*, *:after, *:before
{
box-sizing: inherit
}