summaryrefslogtreecommitdiffstats
path: root/examples/webenginewidgets/printme/data/style.css
blob: af8b70fda3aa003d5a569f5f3118f8eb3a06017e (plain)
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
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html,body {
     height: 100%;
     width: 100%;
}

 body {
     display: flex;
}

 .header {
     display: inline
}

 .form {
     width: 50%;
     background: #fff;
     border: 0.5px solid #999;
     border-radius: 8px;
     color: #46a;
     font-family: 'Titillium Web', sans-serif;
     font-size: 1rem;
     margin: auto;
     padding: 1.5rem;
     position: relative;
     text-decoration: none;
}

h1 {
    color: #00414A;
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: -0.85rem;
    margin-bottom: 2rem;
}

h2 {
    color: #00414A;
    font-size: 1.125rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1rem;
}

 .button{
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 0.4444em 0.8889em;
     height: 2.4em;
     cursor: pointer;
     background: #00414A;
     color: #fff;
     border-radius: 4px;
     margin-top: 2rem;
     font-family: 'Titillium Web', sans-serif;
     font-size: 1.125rem;
     font-weight: 400;
     transition: color 300ms ease-out, border 300ms ease-out;
}

 .button:hover {
    background: #19545C;
}

 .button:active {
     background-color: #19545C;
}