|
6 | 6 | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
7 | 7 | <meta http-equiv="X-UA-Compatible" content="ie=edge"> |
8 | 8 | <title>Render Raw Gist</title> |
9 | | - |
10 | | - <style> |
11 | | - @import url('https://fonts.googleapis.com/css?family=Lato'); |
12 | | - |
13 | | - * { |
14 | | - font-family: 'Lato', sans-serif; |
15 | | - font-size: 22px; |
16 | | - padding: 0; |
17 | | - margin: 0; |
18 | | - } |
19 | | - |
20 | | - body { |
21 | | - background: linear-gradient(0deg, #0288d1 0%, #53cde2 100%); |
22 | | - } |
23 | | - |
24 | | - main { |
25 | | - display: flex; |
26 | | - flex-flow: column; |
27 | | - align-items: center; |
28 | | - justify-content: center; |
29 | | - } |
30 | | - |
31 | | - h1 { |
32 | | - font-size: 54px; |
33 | | - font-weight: 800; |
34 | | - text-transform: uppercase; |
35 | | - color: #edf9fc; |
36 | | - } |
37 | | - |
38 | | - input { |
39 | | - margin: 8px; |
40 | | - padding: 14px; |
41 | | - border: none; |
42 | | - border-bottom: 1px solid white; |
43 | | - width: 300px; |
44 | | - outline: white; |
45 | | - line-height: 1.5em; |
46 | | - background-color: transparent; |
47 | | - color: white; |
48 | | - |
49 | | - } |
50 | | - |
51 | | - ::placeholder { color: #53cde2 } |
52 | | - :-ms-input-placeholder { color: #53cde2 } |
53 | | - ::-ms-input-placeholder { color: #53cde2 } |
54 | | - |
55 | | - button { |
56 | | - margin: 23px; |
57 | | - padding: 12px 34px 12px 34px; |
58 | | - border: 1px solid white; |
59 | | - border-radius: 160px; |
60 | | - background: transparent; |
61 | | - color: white; |
62 | | - font-weight: 600; |
63 | | - outline: none; |
64 | | - } |
65 | | - |
66 | | - button { |
67 | | - -webkit-transition: color 250ms linear; |
68 | | - -moz-transition: color 250ms linear; |
69 | | - -o-transition: color 250ms linear; |
70 | | - -ms-transition: color 250ms linear; |
71 | | - transition: color 250ms linear; |
72 | | - |
73 | | - -webkit-transition: background-color 300ms linear; |
74 | | - -moz-transition: background-color 300ms linear; |
75 | | - -o-transition: background-color 300ms linear; |
76 | | - -ms-transition: background-color 300ms linear; |
77 | | - transition: background-color 300ms linear; |
78 | | - } |
79 | | - |
80 | | - button:hover { |
81 | | - background-color: #edf9fc; |
82 | | - border: 1px solid #edf9fc; |
83 | | - color: #0289d1ce ; |
84 | | - } |
85 | | - |
86 | | - @media (max-height: 950px) { main { height: 860px; } } |
87 | | - @media (max-height: 850px) { main { height: 760px; } } |
88 | | - @media (max-height: 750px) { main { height: 660px; } } |
89 | | - @media (max-height: 650px) { main { height: 560px; } } |
90 | | - @media (max-height: 550px) { main { height: 460px; } } |
91 | | - @media (max-height: 350px) { main { height: 320px; } } |
92 | | - @media (min-height: 950px) { main { height: 1000px; } } |
93 | | - |
94 | | - </style> |
| 9 | + <link rel="stylesheet" href="style.css" /> |
95 | 10 | </head> |
96 | 11 | <body> |
97 | 12 |
|
|
0 commit comments