-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathstyle.css
107 lines (95 loc) · 1.57 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
html {
width: 100%;
height: 100vh;
background: white;
font-size: 1.0em;
}
body {
margin: 0;
height: 100%;
background-color: white;
}
div.container {
background-color: white;
display: grid;
width: 100%;
height: 100px;
font-size: 35px;
}
div.header {
background-color: white;
grid-area: head;
text-align: center;
font-size: 3em;
}
div.footer {
background-color: white;
grid-area: foot;
}
div.panel {
background-color: white;
}
div.panel.left {
grid-area: panleft;
}
div.panel.right {
grid-area: panright;
}
div.mainbody {
grid-area: mainbody;
}
.navbar{
overflow: hidden;
background-color: black;
font-family: Arial;
}
.navbar a{
float: left;
font-size: 16px;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.navbar a:hover, .dropdown:hover .dropbtn{
background-color: #4364ae;
}
.logo img{
width: 50%;
padding-top: 10px;
padding-bottom: 20px;
height: auto;
display: block;
margin-left: auto;
margin-right: auto;
}
.column{
display: block;
margin-left: 110px;
margin-right: auto;
float: left;
width: 40%;
padding-bottom: 50px;
position: relative;
}
.row::after{
content: "";
clear: both;
display: table;
}
.column .btn{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
background-color: whitesmoke;
color: #4364AE;
font-size: 16px;
padding: 12px 24px;
border: none;
cursor: pointer;
border-radius: 5px;
}
.column .btn:hover{
background-color: slategrey;
}