-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (54 loc) · 1.1 KB
/
style.css
File metadata and controls
63 lines (54 loc) · 1.1 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
* {
padding: 0;
margin: 0;
}
.main {
margin-top: 10px;
display: flex;
justify-content: center;
align-items: center;
justify-content: space-evenly
}
.box1 {
height: 300px;
width: 40%;
background-color: chartreuse;
}
.box2 {
height: 300px;
width: 40%;
background-color: rgb(230, 148, 186);
font-size: 25px;
}
button{
margin-top: 80px;
margin-left: 46%;
height: 40px;
width:100px;
font-style: italic;
font-weight: 700;
font-size: 20;
background-color:chartreuse;
border-radius: 5px;
}
.name h1{
margin-top: 40px;
margin-left: 10px;
border-bottom: thin solid rgb(230, 79, 79);
/* border-bottom:1px solid black ; */
background-color: antiquewhite;
width: 45%;
}
@media (max-width:600px) {
.box2{
background-color: aqua;
margin-top: 10px;
}
.main{
flex-direction: column;
}
.box1 h1{
font-family: Arial, Helvetica, sans-serif;
color: cornflowerblue;
}
}