forked from giulia-pass93/login
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (70 loc) · 1.54 KB
/
style.css
File metadata and controls
94 lines (70 loc) · 1.54 KB
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
87
88
89
90
91
92
93
94
.main{
display: flex;
align-items: center;
justify-content:center;
margin-top: 25%;
margin-bottom: 25%;
}
.intestazione{
/*TESTO*/
color: white;
font-family:Arial, Helvetica, sans-serif;
font-size: 13px;
display:flex;
text-align:initial;
flex-direction: column;
justify-content: center;
align-items: center;
/*CARATTERISTICHE*/
background-image: url(space.jpg);
padding:30px;
width: 350px;
height: 350px;
border-radius: 10px;
}
.login{
/*TESTO*/
color: grey;
font-size: 10px;
font-family:Arial, Helvetica, sans-serif;
/*CARATTERISTICHE*/
width: 350px;
height: 500px;
border-color: black;
background-color: white;
border-radius: 10px;
padding: 60px 30px 10px 30px;
margin-top: 25%;
}
.login input{
border: 0px;
outline: none;
}
.login #btn1{
/*TESTO*/
text-align: center;
font-size: 15px;
font-family:Arial, Helvetica, sans-serif;
color:white;
/*CARATTERISTICHE*/
border-radius: 30px;
border: 0px;
background-color:darkturquoise;
padding: 15px 33px;
margin: 10px 100px 20px 100px;
outline: none;
cursor: pointer;
}
.login #btn2{
/*TESTO*/
text-align: center;
font-size: 15px;
font-family:Arial, Helvetica, sans-serif;
color: grey;
/*CARATTERISTICHE*/
background-color:white;
border:0px;
padding: 40px 100px 50px 100px;
outline: none;
cursor: pointer;
}