-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
94 lines (80 loc) · 1.86 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
body{
background-image: url("background2.jpg");
background-size: cover; /* or contain, or specific size */
background-position: center ; /* or other positions */
background-repeat: no-repeat;
}
.container{
/* background-color: aqua; */
padding:1%;
padding-left: 5%;
padding-right: 5%;
display: flex;
flex: wrap;
flex-grow: 2;
justify-content: center;
flex-direction: column;
/*(top, right, bottom, left)*/
width: 9cm;
height:9cm;
margin: 5% 30% 10% 10%;
h1{
color:white;
text-align: left;
margin-bottom: 0;
font-family:sans-serif;
font-weight: lighter;
font-size: 5vw;
}
p{
margin-top: 0%;
color: white;
text-align: left;
margin-bottom: 1cm;
font-family:sans-serif;
font-weight:lighter;
font-size: 2vw;
}
input{
flex-shrink: 1;
background-color: none;
color: none;
border: none;
width: 6cm;
}
.btn1{
margin-top: 4%;
width: 100%;
left: 0%;
background-color: rgb(56, 152, 236);
padding: 3%;
margin-bottom: 1.5rem;
color: aliceblue;
font-family:'Times New Roman', Times, serif;
font-weight:bolder;
border: none;
width: 6.2cm;
cursor: pointer;
}
.btn2{
background:none;
color:white;
border: none;
text-decoration: underline;
cursor: pointer;
}
#btns{
display: flex;
flex-direction: column;
align-items: flex-start;
}
}
input{
margin: 1%;
}
#warn{
color: red;
font-size: small;
padding: 0%;
margin: 0%;
}