]> git.immae.eu Git - perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git/blob - cmd/web/static/style.css
Poloniex connection.
[perso/Immae/Projets/Cryptomonnaies/Cryptoportfolio/Front.git] / cmd / web / static / style.css
1 @charset "UTF-8";
2
3 body {
4 font-family: 'Fira Mono', 'Helvetica Neue', Arial, Helvetica, sans-serif;
5 background-color: rgb(246, 248, 251);
6 }
7
8 ul {
9 list-style-type: none;
10 }
11
12 a {
13 text-decoration: none;
14 color: inherit;
15 }
16
17 a:hover {
18 text-decoration: none;
19 color: inherit;
20 }
21
22 a:focus {
23 text-decoration: none;
24 color: inherit;
25 }
26
27 i.cc {
28 font-size: 1.5em;
29 }
30
31 #logo {
32 text-align: center;
33 display: inline-block;
34 color: white;
35 font-size: 28px;
36 background-color: rgb(20, 20, 20);
37 border-radius: 4px;
38 font-weight: bold;
39 padding: 10px 10px 10px 10px;
40 vertical-align: middle;
41 margin-bottom: 30px;
42 margin-top: 20px;
43 }
44
45 .sign-in .form-control {
46 margin-bottom: 20px;
47 border-radius: 2px;
48 border: none;
49 background-color: white;
50 }
51
52 .sign-in .submit {
53 background-color: rgb(20, 20, 20);
54 color: white;
55 }
56
57 .api-credentials-form .form-control {
58 margin-bottom: 20px;
59 border-radius: 2px;
60 border: none;
61 background-color: white;
62 }
63
64 .api-credentials-form .submit {
65 background-color: rgb(20, 20, 20);
66 color: white;
67 }
68
69 .otp-enroll .form-control {
70 margin-bottom: 20px;
71 border-radius: 2px;
72 border: none;
73 background-color: white;
74 }
75
76 .otp-enroll .submit {
77 background-color: rgb(20, 20, 20);
78 color: white;
79 }
80 .form-message {
81 background-color: rgba(255, 6, 6, .33);
82 border-radius: 2px;
83 line-height: 50px;
84 }
85
86 .form-message.message-ok {
87 background-color: rgba(33, 255, 72, .33);
88 }
89
90 #main {
91 padding-top: 100px;
92 }
93
94 .box {
95 position: relative;
96 background-color: rgb(250, 250, 250);
97 box-shadow: 0 2px 6px 2px rgba(0,0,0,.05);
98 border-radius: 4px;
99 margin-bottom: 10px;
100 margin-top: 10px;
101 padding-top: 10px;
102 padding-bottom: 10px;
103 }