-
Notifications
You must be signed in to change notification settings - Fork 2
/
template.css
79 lines (76 loc) · 1.6 KB
/
template.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
*{
padding: 0%;
margin: 0%;
box-sizing: border-box;
}
body{
width: 100%;
height: 100vh;
}
#container{
display: flex;
width: 100%;
height: 650px;
}
#container>.inner1{
width: 50%;
height: 100%;
}
#container>.inner1>h1{
margin-left: 100px;
margin-top: 100px;
}
#container>.inner1>p{
margin-left: 100px;
margin-top: 40px;
font-size: 20px;
margin-right: 80px;
}
#container>.inner1>.btndiv{
margin-left: 100px;
margin-top: 30px;
cursor: pointer;
}
#container>.inner1>.btndiv>button{
width: 180px;
height: 50px;
cursor: pointer;
}
#container>.inner1>.btndiv>button:nth-child(1){
margin-right: 20px;
border: none;
background-color: #7856ff;
color: white;
font-size: 15px;
font-weight: bold;
border-radius: 4px;
}
#container>.inner1>.btndiv>button:nth-child(1):hover{
background-color: #8a6cff;
}
#container>.inner1>.btndiv>button:nth-child(2){
margin-right: 20px;
border: none;
background-color:#fff;
border: 1px solid rgb(0, 217, 255);
color: rgb(0, 217, 255);
font-size: 15px;
font-weight: bold;
border-radius: 4px;
}
#container>.inner1>.btndiv>button:nth-child(2):hover{
background-color: rgb(0, 217, 255);
color: black;
}
#container>.inner2{
width: 50%;
height: 100%;
}
#container>.inner2>img{
margin-top: 50px;
margin-left: 100px;
height: 450px;
width: 400px;
border-radius: 5px;
box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}