-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
101 lines (101 loc) · 2.02 KB
/
main.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
95
96
97
98
99
100
101
body {
background-image: url(./images/dropboxBackground.png);
background-size: cover;
background-repeat: repeat-x;
position: relative;
margin: 0;
padding: 0;
font-family: "Comic Sans MS", cursive, sans-serif;
}
#container {
width: 100%;
height: 100vh;
display: inline-block;
position: relative;
}
header {
display: inline-block;
width: 100%;
text-align: center;
background-color: #ffffff;
margin: 0;
padding: 0;
}
div {
display: block;
float: left;
width: 40%;
height: 80%;
position: relative;
}
h1 {
display: block;
text-align: center;
position: absolute;
margin: 90px;
bottom: 227px;
right: 20px;
}
p {
display: inline-block;
text-align: center;
position: absolute;
bottom: 200px;
right: 84px;
margin-left: 72px;
padding: 2px;
}
#logo {
display: inline-block;
text-align: center;
width: 12%;
height: 5vh;
padding: 4px;
}
#leftTop {
display: inline-block;
float: left;
text-decoration: none;
padding: 9px;
background-color: white;
color: black;
border: 2px solid #555555;
margin: 10px;
border-radius: 8px;
}
#rightTop {
display: inline-block;
float: right;
padding: 20px;
text-decoration: none;
}
#tryButton {
display: inline-block;
color: #ffffff;
width: 230px;
height: 60px;
float: left;
position: absolute;
bottom: 30px;
left: 40px;
border: none;
border-radius: 8px;
background-color: lightseagreen;
}
#getButton {
display: inline-block;
color: lightseagreen;
width: 230px;
height: 60px;
position: absolute;
bottom: 30px;
left: 300px;
border: 1px solid lightseagreen;
border-radius: 8px;
}
#tryButton:hover {
cursor: pointer;
}
#getButton:hover {
cursor: pointer;
}