-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
90 lines (88 loc) · 1.39 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
*{
margin: 0;
}
body{
background-color: #E9EBEE;
text-align: center;
padding-top: 50px;
position: relative;
}
#welcome{
margin: 50px auto 50px auto;
font-size: 55px;
}
#content{
margin-top: 50px;
}
.title{
color: #75A3D1;
}
#icons{
width: 800px;
justify-content:space-between;
margin: 50px auto 10px;
}
.icon{
margin: 0 10px 0 10px;
opacity: .8;
height: 100px;
}
#upload_icon{
opacity:1;
}
#icon_text{
width: 650px;
margin: 0 auto 50px;
justify-content: space-between;
display: inline-flex;
}
.icon_text{
width: 150px;
}
.info{
width: 90%;
margin: 50px auto 50px;
position: relative;
height: 400px;
}
.info_item{
font-size: 30px;
position: absolute;
width: 60%;
margin-top: 100px;
}
.info_image{
position: absolute;
height: 400px;
}
.left{
left: 0;
}
.right{
right: 0;
}
#get_started{
width: 50%;
margin: 50px auto 0;
height: 300px;
font-size: 30px;
}
#login_start,#signup_start{
margin: 30px 15px;
height: 50px;
width: 125px;
border: 1px solid #E05151;
border-radius: 5px;
background-color: transparent;
color: white;
font-size: 20px;
cursor: pointer;
cursor: hand;
text-decoration: none;
}
#login_start:focus, #signup_start:focus{
outline: none;
}
#login_start:hover, #signup_start:hover{
background-color: #E05151;
}