-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
60 lines (57 loc) · 973 Bytes
/
Copy pathindex.css
File metadata and controls
60 lines (57 loc) · 973 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
48
49
50
51
52
53
54
55
56
57
58
59
60
html {
margin-left: 25%;
margin-right: 25%;
box-sizing: border-box;
}
.inp-1::placeholder {
color: rgb(175, 160, 160);
}
/* title */
.app-main {
color: aliceblue;
font-weight: bold;
padding-bottom: 7px;
background-color: royalblue;
margin-top: 1%;
border-radius: 1rem;
}
/* middle div (center) */
.inp-div {
margin-top: 4%;
background: lightcyan;
border-radius: 1rem;
padding-bottom: 10px;
}
span {
font-weight: bolder;
}
/* main-div(outter) */
.main-div1 {
background-color: lightblue;
text-align: center;
width: 100%;
padding: 10px 15px;
margin-top: 10%;
border-radius: 2rem;
}
/* media */
@media only screen and (max-width: 800px) {
/* For tablets: */
.main-div1 {
width: 100%;
}
html {
margin-left: 10%;
margin-right: 10%;
}
}
@media only screen and (max-width: 500px) {
/* For mobile phones: */
.main-div1 {
width: 100%;
}
.app-main {
padding-bottom: 10px;
font-size: 40px;
}
}