-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
175 lines (148 loc) · 2.99 KB
/
style.css
File metadata and controls
175 lines (148 loc) · 2.99 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
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
img {
width: 10%;
height: auto;
align-content: center;
}
body{
background-color: #EDE5CC;
}
.flex-container {
display: flex;
flex-wrap: nowrap;
}
.flex-container > div {
width: 50%;
margin: 20px;
text-align: center;
line-height: 40px;
font-size: 30px;
}
.merriweatherFont {
font-family: 'Merriweather'; font-size: 40px;
}
.center {
display: block;
margin-left: auto;
margin-right: auto;
}
* {
box-sizing: border-box;
}
body {
margin: 0;
}
/* Style the header */
.header {
background-color: #f1f1f1;
padding: 10px;
text-align: center;
}
/* Style the top navigation bar */
.topnav {
overflow: hidden;
background-color: #1899d6;
}
/* Style the topnav links */
.topnav a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
/* Change color on hover */
.topnav a:hover {
font-size: 17px;
color: rgb(0, 32, 108);
transition: color 0.6s, font-size 0.6s;
}
/* Create three unequal columns that floats next to each other */
.column {
float: left;
padding: 40px;
}
/* Left and right column */
.column.side {
float: right;
padding: 10px;
}
/* Clear floats after the columns */
.row:after {
content: "";
display: table;
clear: both;
}
.button-19 {
appearance: button;
background-color: #1899D6;
border: solid transparent;
border-radius: 16px;
border-width: 0 0 4px;
box-sizing: border-box;
color: #FFFFFF;
cursor: pointer;
display: inline-block;
font-family: din-round,sans-serif;
font-size: 15px;
font-weight: 700;
letter-spacing: .8px;
line-height: 20px;
margin: 0;
outline: none;
overflow: visible;
padding: 13px 16px;
text-align: center;
text-transform: uppercase;
touch-action: manipulation;
transform: translateZ(0);
transition: filter .2s;
user-select: none;
-webkit-user-select: none;
vertical-align: middle;
white-space: nowrap;
width: 100%;
}
.button-19:after {
background-clip: padding-box;
background-color: #1CB0F6;
border: solid transparent;
border-radius: 16px;
border-width: 0 0 4px;
bottom: -4px;
content: "";
left: 0;
position: absolute;
right: 0;
top: 0;
z-index: -1;
}
.button-19:main,
.button-19:focus {
user-select: auto;
}
.button-19:hover:not(:disabled) {
filter: brightness(1.1);
-webkit-filter: brightness(1.1);
}
.button-19:disabled {
cursor: auto;
}
.loginbutton{
display: inline-block;
outline: 0;
border: 0;
cursor: pointer;
font-weight: 600;
color: rgb(72, 76, 122);
font-size: 14px;
height: 38px;
padding: 8px 24px;
border-radius: 50px;
background-image: linear-gradient(180deg,#fff,#f5f5fa);
box-shadow: 0 4px 11px 0 rgb(37 44 97 / 15%), 0 1px 3px 0 rgb(93 100 148 / 20%);
transition: all .2s ease-out;
}
.loginbutton:hover{
box-shadow: 0 8px 22px 0 rgba(29, 34, 77, 0.15), 0 4px 6px 0 rgb(93 100 148 / 20%);
}