summary refs log tree commit diff
path: root/synapse/res/templates/sso.css
blob: 46b309ea4e83a548f8972bb4c82f3f9d48acc5f6 (plain) (blame)
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
body {
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  font-size: 14px;
  color: #17191C;
}

header {
  max-width: 480px;
  width: 100%;
  margin: 24px auto;
  text-align: center;
}

header p {
  color: #737D8C;
  line-height: 24px;
}

h1 {
  font-size: 24px;
}

.error_page h1 {
  color: #FE2928;
}

h2 {
  font-size: 14px;
}

h2 img {
  vertical-align: middle;
  margin-right: 8px;
  width: 24px;
  height: 24px;
}

label {
  cursor: pointer;
}

main {
  max-width: 360px;
  width: 100%;
  margin: 24px auto;
}

.primary-button {
  border: none;
  text-decoration: none;
  padding: 12px;
  color: white;
  background-color: #418DED;
  font-weight: bold;
  display: block;
  border-radius: 12px;
  width: 100%;
  box-sizing: border-box;
  margin: 16px 0;
  cursor: pointer;
  text-align: center;
}

.profile {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.profile .avatar {
  width: 36px;
  height: 36px;
  border-radius: 100%;
  display: block;
  margin-right: 8px;
}

.profile .display-name {
  font-weight: bold;
  margin-bottom: 4px;
}
.profile .user-id {
  color: #737D8C;
}

.profile .display-name, .profile .user-id {
  line-height: 18px;
}