File tree Expand file tree Collapse file tree 8 files changed +63
-6
lines changed Expand file tree Collapse file tree 8 files changed +63
-6
lines changed Original file line number Diff line number Diff line change 14
14
background : hsla (0 , 0% , 92.5% , 0.5 );
15
15
}
16
16
17
- # _default_ a ._default_ , # _default_ .default-text {
18
- width : 100% !important ;
17
+ .sponsors {
18
+ display : flex;
19
+ justify-content : space-between;
20
+ align-items : center;
21
+ margin : 1rem 0 ;
19
22
}
20
23
21
- .md-nav__link [ data-md-state = blur ] : not (. md-nav__link--active ) {
22
- color : rgba ( 0 , 0 , 0 , 0.87 ) ;
24
+ .sponsors div {
25
+ text-align : center ;
23
26
}
24
27
25
- .md-nav__link--active {
26
- font-weight : 700 ;
28
+ .sponsors img {
29
+ width : 75% ;
30
+ border-radius : 5px ;
27
31
}
Original file line number Diff line number Diff line change @@ -13,6 +13,59 @@ Data validation and settings management using python type annotations.
13
13
14
14
Define how data should be in pure, canonical python; validate it with * pydantic* .
15
15
16
+ ## Sponsors
17
+
18
+ Development of * pydantic* is made possible by the following sponsors:
19
+
20
+ <div class =" sponsors " >
21
+ <div >
22
+ <a rel="sponsored" target="_blank" href="https://www.salesforce.com">
23
+ <img src="./sponsor_logos/salesforce.png" alt="Salesforce" />
24
+ Salesforce
25
+ </a>
26
+ </div >
27
+ <div >
28
+ <a rel="sponsored" target="_blank" href="https://fastapi.tiangolo.com">
29
+ <img src="./sponsor_logos/fastapi.png" alt="FastApi" />
30
+ FastApi
31
+ </a>
32
+ </div >
33
+ <div >
34
+ <a rel="sponsored" target="_blank" href="https://tutorcruncher.com/?utm_source=pydantic&utm_campaign=open_source">
35
+ <img src="./sponsor_logos/tutorcruncher.png" alt="TutorCruncher" />
36
+ TutorCruncher
37
+ </a>
38
+ </div >
39
+ <div >
40
+ <a rel="sponsored" target="_blank" href="https://www.exoflare.com/open-source/?utm_source=pydantic&utm_campaign=open_source">
41
+ <img src="./sponsor_logos/exoflare.png" alt="ExoFlare" />
42
+ ExoFlare
43
+ </a>
44
+ </div >
45
+ <div >
46
+ <a rel="sponsored" target="_blank" href="https://home.robusta.dev">
47
+ <img src="./sponsor_logos/robusta.png" alt="Robusta" />
48
+ Robusta
49
+ </a>
50
+ </div >
51
+ <div >
52
+ <a rel="sponsored" target="_blank" href="https://www.sendcloud.com">
53
+ <img src="./sponsor_logos/sendcloud.png" alt="SendCloud" />
54
+ SendCloud
55
+ </a>
56
+ </div >
57
+ </div >
58
+
59
+ And many more who kindly sponsor Samuel Colvin on [ GitHub Sponsors] ( https://github.com/sponsors/samuelcolvin#sponsors ) .
60
+
61
+ <script >
62
+ // randomize the order of sponsors
63
+ const ul = document .querySelector (' .sponsors' )
64
+ for (let i = ul .children .length ; i >= 0 ; i-- ) {
65
+ ul .appendChild (ul .children [Math .random () * i | 0 ])
66
+ }
67
+ </script >
68
+
16
69
## Example
17
70
18
71
``` py
You can’t perform that action at this time.
0 commit comments