-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path1st.css
More file actions
47 lines (43 loc) · 798 Bytes
/
1st.css
File metadata and controls
47 lines (43 loc) · 798 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
body{
background-color: royalblue;
font-family: 'Times New Roman', Times, serif;
}
.login{
width: 400px;
margin: 16px auto;
font-size: 16px;
}
.head,.login p{
margin-top: 0;
margin-bottom: 0;
}
.login p{
padding: 12px;
}
.login-tri{
width: 1;
border: 12px solid transparent;
border-bottom-color: #28d;
}
.head{
background: #28d;
padding: 20px;
font-size: 1.4em;
font-weight: normal;
text-align: center;
text-transform: uppercase;
color: #fff;
}
.container{
background: #ebebeb;
padding: 12px;
}
.login input{
box-sizing: border-box;
box-shadow: teal;
display: block;
width: 100%;
border-width: 1px;
border-style: solid;
padding: 16px;
}